From 64d770d51b4d1b5340c5f52f9483284dd0e1468d Mon Sep 17 00:00:00 2001 From: Ferexio Date: Wed, 23 Nov 2022 21:06:02 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 15be397..23cd15e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,14 +11,14 @@ steps: with: python-version: 3.9 - name: Install dependencies - run: | - python3 -m pip install --upgrade pip - pip3 install testing.postgresql - pip3 install sqlalchemy - pip3 install pgmock - pip3 install psycopg2 - pip3 install unittest - pip3 install pytest + script: + - python3 -m pip install --upgrade pip + - pip3 install testing.postgresql + - pip3 install sqlalchemy + - pip3 install pgmock + - pip3 install psycopg2 + - pip3 install unittest + - pip3 install pytest - name: Run tests - run: | + script: python3 -m unittest tests/* \ No newline at end of file