Switches back to last-known working config. Installs coverage.
This commit is contained in:
parent
7855bed328
commit
3cd27c3410
18
.travis.yml
18
.travis.yml
|
@ -1,23 +1,23 @@
|
||||||
sudo: required
|
language: python
|
||||||
dist: trusty
|
|
||||||
|
python:
|
||||||
|
- "3.7"
|
||||||
|
|
||||||
|
services:
|
||||||
|
- postgresql
|
||||||
|
- docker
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
chrome: stable
|
chrome: stable
|
||||||
sonarcloud:
|
sonarcloud:
|
||||||
organization: "sartography"
|
organization: "sartography"
|
||||||
|
|
||||||
language: python
|
|
||||||
|
|
||||||
services:
|
|
||||||
- postgresql
|
|
||||||
- docker
|
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- cp config/travis-testing.py config/testing.py
|
- cp config/travis-testing.py config/testing.py
|
||||||
- psql -c 'create database crc_test;' -U postgres
|
- psql -c 'create database crc_test;' -U postgres
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- pip install pipenv pytest
|
- pip install pipenv pytest coverage
|
||||||
- pipenv install
|
- pipenv install
|
||||||
- pytest # <== This runs in Pipenv (a/k/a virtualenv)
|
- pytest # <== This runs in Pipenv (a/k/a virtualenv)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue