mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
26 lines
420 B
YAML
26 lines
420 B
YAML
language: python
|
|
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq libpoppler-cpp-dev unpaper tesseract-ocr tesseract-ocr-eng
|
|
|
|
sudo: false
|
|
|
|
matrix:
|
|
include:
|
|
- python: 3.4
|
|
- python: 3.5
|
|
- python: 3.6
|
|
- python: 3.6
|
|
|
|
install:
|
|
- pip install --requirement requirements.txt
|
|
|
|
script:
|
|
- cd src/
|
|
- pytest --cov
|
|
- pycodestyle
|
|
|
|
after_success:
|
|
- coveralls
|