Skip to content

Commit 91ac438

Browse files
committed
build: update installation step for a tests asset
1 parent 2300568 commit 91ac438

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- run: git clone https://github.com/PyCQA/pycodestyle ../pycodestyle
2727
- run: cd ../pycodestyle && python setup.py build && cd -
2828
- run: git clone https://github.com/mbdevpl/argunparse ../argunparse
29-
- run: cd ../argunparse && pip install -r test_requirements.txt && python setup.py build && cd -
29+
- run: cd ../argunparse && pip install -r requirements_test.txt && python setup.py build && cd -
3030
- run: git clone https://github.com/python-semver/python-semver ../semver
3131
- run: cd ../semver && python setup.py build && cd -
3232
- run: pip install jupyter

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ RUN set -Eeuxo pipefail && \
6464
cd - && \
6565
git clone https://github.com/mbdevpl/argunparse argunparse && \
6666
cd argunparse && \
67-
pip install -r test_requirements.txt && \
67+
pip install -r requirements_test.txt && \
6868
python setup.py build && \
6969
cd - && \
7070
git clone https://github.com/python-semver/python-semver semver && \

0 commit comments

Comments
 (0)