* restore conftest.py in subrepos * remove conftest files from subrepos in the docker image * remove runslow flag from baselines .travis.yml and rl-algs ci/runtests.sh * move import of rendering module into the code to fix tests that don't require a display * restore the dockerfile
15 lines
313 B
YAML
15 lines
313 B
YAML
language: python
|
|
python:
|
|
- "3.6"
|
|
|
|
services:
|
|
- docker
|
|
|
|
install:
|
|
- pip install flake8
|
|
- docker build . -t baselines-test
|
|
|
|
script:
|
|
- flake8 --select=F,E999 baselines/common baselines/trpo_mpi baselines/ppo2 baselines/a2c baselines/deepq baselines/acer
|
|
- docker run baselines-test pytest -v .
|