We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a038736 commit d19be27Copy full SHA for d19be27
tests/test_app.py
@@ -6,6 +6,7 @@
6
from unittest import TestCase
7
from streamlit.testing.v1 import AppTest
8
9
+
10
class Test(TestCase):
11
"""
12
Find out more about how to test streamlit apps:
@@ -23,5 +24,6 @@ def test_ui_title_and_header(self):
23
24
25
def test_lint(self):
26
# run the linter on the src directory
- lint_output = os.popen("autopep8 --exit-code --recursive --diff --aggressive ./src").read()
27
+ lint_output = os.popen(
28
+ "autopep8 --exit-code --recursive --diff --max-line-length 120 ./src").read()
29
assert lint_output == ""
0 commit comments