yet another circle fix

circle2
Ryan Barrett 2018-10-16 11:55:22 -07:00
rodzic 9557216789
commit a614031a71
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 6BE31FDF4776E9D4
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -21,7 +21,7 @@ jobs:
key: venv-{{ .Branch }}-{{ checksum "requirements.freeze.txt" }}
- run:
name: Build and test
name: Python 2 dependencies
command: |
apt-get install -y python-virtualenv google-cloud-sdk-app-engine-python-extras
virtualenv --python=python2 local
@ -38,6 +38,10 @@ jobs:
ln -s $VIRTUAL_ENV local # we use app engine's vendor module to point here
pip install coverage coveralls # for https://coveralls.io/
- run:
name: Build and test
command: |
. local/bin/activate
python2 -m coverage run --source=. --omit=appengine_config.py,local/\*,oauth-dropins/\*,tests/\* -m unittest discover -v
python2 -m coverage html -d /tmp/coverage_html