* simple .travis.yml file * added static syntax checks of common to .travis.yml * dockerizing the build * fix Dockerfile, adding build shield * cleaning up workdir in Dockerfile and .travis.yml * .travis.yml fixed common -> baselines/common for style check
15 lines
224 B
YAML
15 lines
224 B
YAML
language: python
|
|
python:
|
|
- "3.6"
|
|
|
|
services:
|
|
- docker
|
|
|
|
install:
|
|
- pip install flake8
|
|
- docker build . -t baselines-test
|
|
|
|
script:
|
|
- flake8 --select=F baselines/common
|
|
- docker run baselines-test pytest
|