We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a69cfa commit b479be5Copy full SHA for b479be5
.travis.yml
@@ -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