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
|