Skip to content

Commit

Permalink
CI: Obey requirements-tests.txt rather than hardcoding pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
nbraud committed Apr 1, 2019
1 parent 28ecf8d commit d7fd45c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Linux_task:
apt update || true;
apt install -qq -y pkgconf libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-ttf2.0-dev libsdl1.2-dev libsmpeg-dev libportmidi-dev libswscale-dev libavformat-dev libavcodec-dev libfreetype6-dev gcc
fi
- pip install --upgrade-strategy eager -U pytest
- pip install --upgrade-strategy eager -U -r requirements-tests.txt
- pip install -e .

script:
Expand All @@ -54,7 +54,7 @@ macOS_task:
- pyenv install ${PYTHON}
- pyenv global ${PYTHON}
- pyenv rehash
- pip install --upgrade-strategy eager -U pytest
- pip install --upgrade-strategy eager -U -r requirements-tests.txt
- pip install -e .

script:
Expand All @@ -72,7 +72,7 @@ Windows_task:
- image: python:3.7-windowsservercore-1809

install_script:
- C:\Python\python.exe -m pip install --upgrade-strategy eager -U pytest
- C:\Python\python.exe -m pip install --upgrade-strategy eager -U -r requirements-tests.txt
- C:\Python\python.exe -m pip install -e .

script:
Expand Down

0 comments on commit d7fd45c

Please sign in to comment.