We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 928c8e9 commit 90f0975Copy full SHA for 90f0975
2 files changed
.github/workflows/pythonpackage.yml
@@ -26,9 +26,7 @@ jobs:
26
- name: Install dependencies
27
run: |
28
python -m pip install --upgrade pip
29
- pip install flake8 pytest twine
30
- pip install ipython
31
- pip install jsonschema
+ if [ -f requirements-test.txt ]; then pip install -r requirements-test.txt; fi
32
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33
if [ -f requirements-deeplearning.txt ]; then pip install -r requirements-deeplearning.txt; fi
34
pip install nbformat jupyter
requirements-test.txt
@@ -0,0 +1,5 @@
1
+flake8
2
+pytest
3
+twine
4
+ipython
5
+jsonschema
0 commit comments