py3-validate-email/.travis.yml

19 lines
442 B
YAML
Raw Normal View History

2018-06-01 15:17:06 +02:00
language: python
2018-06-01 15:21:20 +02:00
python:
- "3.5"
- "3.5-dev" # 3.5 development branch
- "3.6"
- "3.6-dev" # 3.6 development branch
2019-03-01 23:32:03 +01:00
- "3.7"
2018-06-01 15:21:20 +02:00
- "3.7-dev" # 3.7 development branch
# command to install dependencies
install:
2019-03-01 23:29:01 +01:00
- pip install -U pip wheel setuptools
2019-03-01 23:32:03 +01:00
- pip install -r requirements.txt
2019-03-01 20:37:52 +01:00
- pip install -e .
2018-06-01 15:21:20 +02:00
# command to run tests
script:
2019-03-01 23:29:01 +01:00
- isort --skip-glob=venv
- flake8 tests/ validate_email/
- python -m unittest discover -v