Skip to content

Commit

Permalink
Optimize py-test action
Browse files Browse the repository at this point in the history
  • Loading branch information
Limych committed May 22, 2021
1 parent b907c99 commit c05e741
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/py-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: "Install dependencies"
run: |
python -m pip install --upgrade pip
# Prefer requirements-dev.txt
# Prefer requirements-dev.txt
if [ -f requirements-dev.txt ]; then
pip install -r requirements-dev.txt
elif [ -f requirements-test.txt ]; then
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
- name: "Install dependencies"
run: |
python -m pip install --upgrade pip
# Prefer requirements-test.txt
# Prefer requirements-test.txt
if [ -f requirements-test.txt ]; then
pip install -r requirements-test.txt
elif [ -f requirements-dev.txt ]; then
Expand Down

0 comments on commit c05e741

Please sign in to comment.