Just noticed that the "coveralls" env was being execute after each env. This was introduced by mistake in #2056
9 lines
246 B
Batchfile
9 lines
246 B
Batchfile
REM skip "coveralls" run in PRs or forks
|
|
if "%TOXENV%" == "coveralls" (
|
|
if not defined COVERALLS_REPO_TOKEN (
|
|
echo skipping coveralls run because COVERALLS_REPO_TOKEN is not defined
|
|
exit /b 0
|
|
)
|
|
)
|
|
C:\Python35\python -m tox
|