2020-02-05 19:54:13 +00:00
|
|
|
language: python
|
2020-02-05 20:17:47 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
- postgresql
|
|
|
|
|
2020-02-05 19:54:13 +00:00
|
|
|
python:
|
|
|
|
- "3.7"
|
2020-02-05 20:17:47 +00:00
|
|
|
|
2020-02-05 20:26:08 +00:00
|
|
|
before_install:
|
2020-02-05 20:17:47 +00:00
|
|
|
- cp config/travis-testing.py config/testing.py
|
|
|
|
- psql -c 'create database crc_test;' -U postgres
|
|
|
|
|
2020-02-05 19:54:13 +00:00
|
|
|
install:
|
|
|
|
- pip install pipenv pytest
|
|
|
|
- pipenv install
|
|
|
|
- pytest # <== This runs in Pipenv (a/k/a virtualenv)
|
2020-02-05 20:28:41 +00:00
|
|
|
|
|
|
|
# command to run tests
|
|
|
|
script:
|
|
|
|
- pytest
|