diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0054a0c9723bc78719aa1ab8c5a004084de5a552..513383b7d630bd9ca0b3173dd4996447f45c73ac 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,27 +2,12 @@ image: python:3.10 before_script: - python --version # For debugging - - pip install isort pylint pytest pyqt6 db-sqlite3 requests + - pip install pytest pyqt6 db-sqlite3 stages: - - Static Analysis - Test - - Deploy - -pylint: - stage: Static Analysis - script: - - pylint --ignore=test -d C0301 -d R0801 -d C0209 -d R0902 -d W0108 -d C0303 -d R1705 ./src pytest: stage: Test script: - - python -m pytest - -MSDeploy: - stage: Deploy - script: - - echo "test ms depoly" - - pyinstaller --add-data "img/*;img/" "src/controller.py" - tags: - - rpl \ No newline at end of file + - python -m pytest \ No newline at end of file