From 57b8790eb730b7251edbcc23720132de5f060039 Mon Sep 17 00:00:00 2001
From: Eunice Sarah Siregar <13521013@std.stei.itb.ac.id>
Date: Wed, 19 Apr 2023 16:12:49 +0000
Subject: [PATCH] Update .gitlab-ci.yml file

---
 .gitlab-ci.yml | 19 ++-----------------
 1 file changed, 2 insertions(+), 17 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0054a0c..513383b 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
-- 
GitLab