I want to run py.test within the root of my repository(it runs fine when locally)
I have already set my environment variables for Python and Git (they work fine), and my CI runner connects with my gitlab repo. However, when a build is triggered I get this message:
gitlab-ci-multi-runner 1.3.1 (4911137)
Using Shell executor...
Running on XXXXXX...Fetching changes...
HEAD is now at 1aa2135 Update .gitlab-ci.yml
Checking out 1aa21352 as cirunner...$ py.test
'py.test' is not recognized as an internal or external command,
operable program or batch file.
ERROR: Build failed: exit status 9009
Why would the Shell Executor not recognize Python/py.test ?
This is on Windows Server 2012.
EDIT: I want to run unit tests with py.test everytime I push to remote