@@ -42,55 +42,16 @@ def test_pandas(tmpdir):
42
42
run_isort ((str (tmpdir / "pandas" ), "--skip" , "__init__.py" ))
43
43
44
44
45
- def test_fastapi (tmpdir ):
46
- git_clone ("https://github.com/tiangolo/fastapi.git" , tmpdir )
47
- run_isort ([str (tmpdir / "fastapi" )])
48
-
49
-
50
45
def test_habitat_lab (tmpdir ):
51
46
git_clone ("https://github.com/facebookresearch/habitat-lab.git" , tmpdir )
52
47
run_isort ([str (tmpdir )])
53
48
54
49
55
- def test_tmuxp (tmpdir ):
56
- git_clone ("https://github.com/tmux-python/tmuxp.git" , tmpdir )
57
- run_isort (
58
- [
59
- str (tmpdir ),
60
- "--skip" ,
61
- "cli.py" ,
62
- "--skip" ,
63
- "test_workspacebuilder.py" ,
64
- "--skip" ,
65
- "test_cli.py" ,
66
- "--skip" ,
67
- "workspacebuilder.py" ,
68
- "--skip" ,
69
- "freezer.py" ,
70
- ]
71
- )
72
-
73
-
74
- def test_websockets (tmpdir ):
75
- git_clone ("https://github.com/aaugustin/websockets.git" , tmpdir )
76
- run_isort ((str (tmpdir ), "--skip" , "example" , "--skip" , "docs" , "--skip" , "compliance" ))
77
-
78
-
79
- def test_typeshed (tmpdir ):
80
- git_clone ("https://github.com/python/typeshed.git" , tmpdir )
81
- run_isort ([str (tmpdir )])
82
-
83
-
84
50
def test_pylint (tmpdir ):
85
51
git_clone ("https://github.com/PyCQA/pylint.git" , tmpdir )
86
52
run_isort ([str (tmpdir ), "--skip" , "bad.py" ])
87
53
88
54
89
- def test_poetry (tmpdir ):
90
- git_clone ("https://github.com/python-poetry/poetry.git" , tmpdir )
91
- run_isort ((str (tmpdir ), "--skip" , "tests" ))
92
-
93
-
94
55
def test_hypothesis (tmpdir ):
95
56
git_clone ("https://github.com/HypothesisWorks/hypothesis.git" , tmpdir )
96
57
run_isort (
@@ -109,47 +70,6 @@ def test_hypothesis(tmpdir):
109
70
)
110
71
111
72
112
- def test_pillow (tmpdir ):
113
- git_clone ("https://github.com/python-pillow/Pillow.git" , tmpdir )
114
- run_isort ((str (tmpdir ), "--skip" , "tests" ))
115
-
116
-
117
- def test_attrs (tmpdir ):
118
- git_clone ("https://github.com/python-attrs/attrs.git" , tmpdir )
119
- run_isort (
120
- (
121
- str (tmpdir ),
122
- "--skip" ,
123
- "tests" ,
124
- "--ext" ,
125
- "py" ,
126
- "--skip" ,
127
- "_compat.py" ,
128
- )
129
- )
130
-
131
-
132
- def test_datadog_integrations_core (tmpdir ):
133
- git_clone ("https://github.com/DataDog/integrations-core.git" , tmpdir )
134
- run_isort (
135
- [
136
- str (tmpdir ),
137
- "--skip" ,
138
- "ddev" ,
139
- "--skip" ,
140
- "docs" ,
141
- "--skip-glob" ,
142
- ".*" ,
143
- "--skip-glob" ,
144
- "*/datadog_checks/dev/tooling/signing.py" ,
145
- "--skip-glob" ,
146
- "*/datadog_checks/dev/tooling/templates/*" ,
147
- "--skip-glob" ,
148
- "*/datadog_checks/*/vendor/*" ,
149
- ]
150
- )
151
-
152
-
153
73
def test_pyramid (tmpdir ):
154
74
git_clone ("https://github.com/Pylons/pyramid.git" , tmpdir )
155
75
run_isort (
0 commit comments