Skip to content

Commit b479be5

Browse files
authored
Create .travis.yml
1 parent 9a69cfa commit b479be5

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: python
2+
python:
3+
- "3.6"
4+
- "3.7"
5+
- "3.8"
6+
7+
install:
8+
- pip install -r requirements.txt
9+
- pip install isort black flake8 pylint
10+
script:
11+
- python tests.py
12+
- isort --check-only --recursive plagcheck
13+
- black --check --diff plagcheck
14+
- flake8 plagcheck --max-line-length=88
15+
- pylint plagcheck --disable=bad-continuation,invalid-name

0 commit comments

Comments
 (0)