Skip to content

Commit

Permalink
Rerun flaky PyPy failures
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Sep 19, 2018
1 parent 2858825 commit fad02d6
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ environment:
EXECUTABLE: bin/pypy.exe
PIP_DIR: bin
VENV: YES
TEST_OPTIONS: '--force-flaky --no-success-flaky-report'
- PYTHON: C:/Python27-x64
- PYTHON: C:/Python34
- PYTHON: C:/Python27
- PYTHON: C:/Python34-x64
- PYTHON: C:/msys64/mingw32
EXECUTABLE: bin/python3
PIP_DIR: bin
TEST_OPTIONS: --processes=0
DEPLOY: NO


Expand Down Expand Up @@ -72,8 +72,12 @@ build_script:
test_script:
- cd c:\pillow
- '%PYTHON%\%PIP_DIR%\pip.exe install pytest pytest-cov'
- '%PYTHON%\%EXECUTABLE% -m pytest -vx --cov PIL --cov-report term --cov-report xml Tests'
#- '%PYTHON%\%EXECUTABLE% test-installed.py -v -s %TEST_OPTIONS%' TODO TEST_OPTIONS with pytest?
- ps: |
if ($env:PYTHON -eq "c:/vp/pypy2")
{
'%PYTHON%\%PIP_DIR%\pip.exe install flaky'
}
- '%PYTHON%\%EXECUTABLE% -m pytest -vx --cov PIL --cov-report term --cov-report xml %TEST_OPTIONS% Tests'

after_test:
- pip install codecov
Expand Down

0 comments on commit fad02d6

Please sign in to comment.