mirror of
https://github.com/domainaware/parsedmarc.git
synced 2026-02-17 07:03:58 +00:00
27 lines
447 B
YAML
27 lines
447 B
YAML
language: python
|
|
|
|
sudo: false
|
|
|
|
python:
|
|
- '2.7'
|
|
- '3.4'
|
|
- '3.5'
|
|
- '3.6'
|
|
|
|
# commands to install dependencies
|
|
install:
|
|
- "pip install flake8 pytest-cov pytest coveralls"
|
|
- "pip install -r requirements.txt"
|
|
|
|
# commands to run samples
|
|
script:
|
|
- "flake8 checkdmarc.py"
|
|
- "flake8 samples.py"
|
|
- "flake8 samples.py"
|
|
- "flake8 setup.py"
|
|
- "cd docs"
|
|
- "make html"
|
|
- "cd .."
|
|
- "python samples.py"
|
|
- "python setup.py bdist_wheel"
|