* training pytests * add json sample file * add pytest compatibility * add compatibility with package test * add reference for pytorch version
12 lines
202 B
YAML
12 lines
202 B
YAML
dist: xenial
|
|
language: python
|
|
python:
|
|
- "3.6"
|
|
- "3.7"
|
|
install:
|
|
- pip install --upgrade pip setuptools
|
|
- pip install ".[test]"
|
|
script:
|
|
- pylint monoloco --disable=unused-variable,fixme
|
|
- pytest -v
|