summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDustin Ingram <di@users.noreply.github.com>2019-04-18 15:30:20 -0500
committerDustin Ingram <di@users.noreply.github.com>2019-04-18 15:30:20 -0500
commit470e17003797e66578090576a888eab1c18565d5 (patch)
tree882d6edd1eba14f313f9941a6a9fb92f7fd2b843
parentd4d3bfaf3d4dae0f17948bb5fb2e9fd0b7478850 (diff)
downloadisort-470e17003797e66578090576a888eab1c18565d5.tar.gz
Remove unnecessary test skips
These tests were being skipped unnecessarily. The skips were added in #809.
-rw-r--r--test_isort.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/test_isort.py b/test_isort.py
index 92c6d197..e1d90d15 100644
--- a/test_isort.py
+++ b/test_isort.py
@@ -2578,8 +2578,6 @@ def test_new_lines_are_preserved():
os.remove(n_newline.name)
-@pytest.mark.skipif(not finders.RequirementsFinder.enabled, reason='RequirementsFinder not enabled (too old version of pip?)')
-@pytest.mark.skipif(not finders.pipreqs, reason='pipreqs is missing')
def test_requirements_finder(tmpdir):
subdir = tmpdir.mkdir('subdir').join("lol.txt")
subdir.write("flask")
@@ -2656,8 +2654,6 @@ deal = {editable = true, git = "https://github.com/orsinium/deal.git"}
"""
-@pytest.mark.skipif(not finders.PipfileFinder.enabled, reason='PipfileFinder not enabled (missing requirementslib?)')
-@pytest.mark.skipif(not finders.pipreqs, reason='pipreqs is missing')
def test_pipfile_finder(tmpdir):
pipfile = tmpdir.join('Pipfile')
pipfile.write(PIPFILE)