forked from python-versioneer/python-versioneer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
35 lines (31 loc) · 836 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
install:
- travis_retry pip install pyflakes flake8 wheel setuptools virtualenv discover pep257
before_script:
- git config --global user.email "[email protected]"
- git config --global user.name "foo"
script:
- easy_install --version
- virtualenv --version
- python setup.py make_versioneer
- python -m discover test
- python test/git/test_git.py -v
- python test/git/test_invocations.py -v
- python setup.py make_long_version_py_git
- pyflakes setup.py versioneer.py git_version.py
- find src -iname "*.py"
-not -path "src/git/long_header.py"
-not -path "src/header.py"
-exec pyflakes {} \;
-exec echo "{}" \;
- pyflakes test
- flake8 git_version.py versioneer.py
- pep257 git_version.py