summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuslan Mullakhmetov <theambient@me.com>2020-10-26 14:42:37 +0100
committerGitHub <noreply@github.com>2020-10-26 20:42:37 +0700
commit676ec9b0ea28e9b923109452e734091c94099b56 (patch)
treed07989fa09c7b58bc8486f821c4a94f0eddea8b8
parented264f08bb53581bf4b2eb3f1e013b9615c37c52 (diff)
downloadrq-676ec9b0ea28e9b923109452e734091c94099b56.tar.gz
tests: updated github worklow for tests to use requirements.txt and d… (#1364)
* tests: updated github worklow for tests to use requirements.txt and dev-requirements.txt * build: updated dev-requirements.txt Co-authored-by: Ruslan Mullakhmetov <ruslan@twentythree.net>
-rw-r--r--.github/workflows/workflow.yml2
-rw-r--r--dev-requirements.txt4
2 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml
index f86e716..c5a6da8 100644
--- a/.github/workflows/workflow.yml
+++ b/.github/workflows/workflow.yml
@@ -33,7 +33,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install redis==${{ matrix.redis-py-version }}
- pip install pytest pytest-cov sentry-sdk codecov mock psutil
+ pip install -r requirements.txt -r dev-requirements.txt
pip install -e .
- name: Test with pytest
diff --git a/dev-requirements.txt b/dev-requirements.txt
index d33f677..066b3d3 100644
--- a/dev-requirements.txt
+++ b/dev-requirements.txt
@@ -1,4 +1,6 @@
+codecov
mock
psutil
pytest
-sentry_sdk
+pytest-cov
+sentry-sdk