py3-validate-email/.travis.yml

18 lines
417 B
YAML
Raw Normal View History

2018-06-01 15:17:06 +02:00
language: python
2019-03-01 23:34:32 +01:00
dist: xenial
2018-06-01 15:21:20 +02:00
python:
- "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:45:29 +01:00
- isort -c --skip-glob=venv
2019-03-02 00:59:23 +01:00
- flake8 tests/ validate_email/ setup.py
- python -m unittest discover -v