diff options
-rw-r--r-- | .gitlab-ci.yml | 12 | ||||
-rw-r--r-- | dev-requirements.txt | 3 | ||||
-rw-r--r-- | main.py | 5 |
3 files changed, 5 insertions, 15 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a951333..c2c8eb4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,18 +38,8 @@ test: stage: test script: - pip install -r dev-requirements.txt - - pytest -n 4 --junitxml=report.xml + - pytest -n 4 --junitxml=report.xml --cov=importer artifacts: reports: junit: report.xml -coverage: - image: python:3-alpine - stage: test - script: - - pip install -r dev-requirements.txt - - coverage run -m pytest - - coverage xml -o cobertura.xml - artifacts: - reports: - cobertura: cobertura.xml diff --git a/dev-requirements.txt b/dev-requirements.txt index 0e5b1cb..b0075d6 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -3,4 +3,5 @@ pytest==6.2.4 pytest-mock==3.6.1 pytest-xdist==2.3.0 coverage==5.5 -pytest-pythonpath==0.7.3
\ No newline at end of file +pytest-pythonpath==0.7.3 +pytest-cov==2.12.1
\ No newline at end of file @@ -2,13 +2,12 @@ import argparse import os import praw -from time import sleep from nextcloud import NextCloud from praw.models.util import stream_generator -from downloader import Downloader -from uploader import create_folders, upload_file +from importer.downloader import Downloader +from importer.uploader import upload_file, create_folders parser = argparse.ArgumentParser(description="Monitor saved") parser.add_argument('-c', '--client-id', |