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