mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
21 lines
357 B
YAML
21 lines
357 B
YAML
language: python
|
|
|
|
sudo: false
|
|
|
|
matrix:
|
|
include:
|
|
- python: 3.4
|
|
env: TOXENV=py34
|
|
- python: 3.5
|
|
env: TOXENV=py35
|
|
- python: 3.6
|
|
env: TOXENV=py36
|
|
- python: 3.6
|
|
env: TOXENV=pep8
|
|
|
|
install:
|
|
- pip install --requirement requirements.txt
|
|
- pip install tox
|
|
|
|
script: tox -c src/tox.ini
|