aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/tests.yml
diff options
context:
space:
mode:
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