Updated .gitlab-ci.yml file

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2020-01-14 22:39:28 +01:00
parent 421a03a62a
commit ebf74b3e4f
2 changed files with 2 additions and 18 deletions

View file

@ -6,15 +6,6 @@ before_script:
stages:
- Static Analysis
- Test
mypy:
stage: Static Analysis
script:
- pwd
- ls -l
- python -m mypy bild/file.py
- python -m mypy bild/directory.py
flake8:
stage: Static Analysis
@ -26,12 +17,3 @@ pylint:
allow_failure: true
script:
- pylint -d C0301 bild/*.py
unit_test:
stage: Test
script:
- pwd
- ls -l
- export PYTHONPATH="$PYTHONPATH:."
- python -c "import sys;print(sys.path)"
- pytest

View file

@ -12,3 +12,5 @@
# python3-pythondialog >= 3.5.0 (Python interface to the UNIX dialog utility)
urllib3 >= 1.25.7
flake8 >= 3.5.0
pylint >= 2.4.4