We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 162cdc6 commit 32a1352Copy full SHA for 32a1352
.github/workflows/multi-platforms.yml
@@ -31,9 +31,11 @@ jobs:
31
shell: bash -l {0}
32
run: |
33
conda install pytest
34
- python setup.py develop
+ python -m pip install --upgrade pip
35
+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
36
git clone https://github.com/luk036/pylds
37
cd pylds; python setup.py develop; cd ..
38
git clone https://github.com/luk036/netoptim
39
cd netoptim; python setup.py develop; cd ..
40
+ python setup.py develop
41
pytest
0 commit comments