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 e8789c2 commit e23a869Copy full SHA for e23a869
.travis.yml
@@ -13,7 +13,9 @@ install:
13
- pip install codecov
14
- pip install tox
15
- pip install tox-travis
16
+- pip install isort
17
script:
18
+- isort --check --recursive src
19
- codecov --version
20
- tox
21
after_success:
setup.cfg
@@ -0,0 +1,6 @@
1
+[isort]
2
+multi_line_output = 3
3
+include_trailing_comma = True
4
+force_grid_wrap = 0
5
+use_parentheses = True
6
+line_length = 88
setup.py
@@ -26,7 +26,7 @@
26
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
27
fd.read(), re.MULTILINE).group(1)
28
29
-tests_requires = ['responses', 'pytest']
+tests_requires = ['responses', 'pytest', 'isort']
30
31
setup(
32
name="cryptojwt",
0 commit comments