Created
November 13, 2017 19:02
-
-
Save fivunlm/fc517d858e1cb734158caf4c7a381cd0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export WORKSPACE=`pwd` | |
# Create/Activate virtualenv | |
virtualenv venv -p python3.6 | |
source venv/bin/activate | |
# Install/Update pytest | |
pip install -U pytest | |
# Run tests | |
pytest --junitxml test-results.xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment