diff options
Diffstat (limited to 'third_party/python/pytest/scripts/call-tox.bat')
-rw-r--r-- | third_party/python/pytest/scripts/call-tox.bat | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/third_party/python/pytest/scripts/call-tox.bat b/third_party/python/pytest/scripts/call-tox.bat new file mode 100644 index 0000000000..86fb25c1df --- /dev/null +++ b/third_party/python/pytest/scripts/call-tox.bat @@ -0,0 +1,8 @@ +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:\Python36\python -m tox |