aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/tests.yml
diff options
context:
space:
mode:
authoradamjanovsky2022-04-05 14:45:22 +0200
committerGitHub2022-04-05 14:45:22 +0200
commitc73e0e0209d3a846863845729071e29511d0fbc7 (patch)
treebbeeccf0480f33cabb2e439b6d84734192fdaca1 /.github/workflows/tests.yml
parentb0e4e9ed1a25f163dab45980cc5a32bcb0dacee9 (diff)
parente243d3cb782f1cad166be7b27ea38465352d0b05 (diff)
downloadsec-certs-0.0.4.tar.gz
sec-certs-0.0.4.tar.zst
sec-certs-0.0.4.zip
Merge pull request #186 from crocs-muni/refactor/better-requirements0.0.4
Refactor/better requirements
Diffstat (limited to '.github/workflows/tests.yml')
-rw-r--r--.github/workflows/tests.yml7
1 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 84c8bc12..3cba8d28 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -5,7 +5,6 @@ on:
env:
DEBIAN_FRONTEND: noninteractive
-
jobs:
run-test:
runs-on: ubuntu-latest
@@ -24,11 +23,9 @@ jobs:
with:
python-version: '3.8'
- name: Install python dependencies
- run: pip install -r requirements.txt
+ run: pip install -r requirements/requirements.txt
- name: Install pytest and package
run: |
- pip install pytest
- pip install pytest-cov
- pip install ".[dev,test]"
+ pip install -r requirements/test_requirements.txt
- name: Run tests
run: pytest --cov=sec_certs tests