Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycrosley committed Jan 13, 2021
1 parent 836302f commit 47882c5
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion tests/integration/test_projects_using_isort.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,19 @@ def test_habitat_lab(tmpdir):

def test_tmuxp(tmpdir):
git_clone("https://github.com/tmux-python/tmuxp.git", tmpdir)
run_isort([str(tmpdir), "--skip", "cli.py", "--skip", "test_workspacebuilder.py"])
run_isort(
[
str(tmpdir),
"--skip",
"cli.py",
"--skip",
"test_workspacebuilder.py",
"--skip",
"test_cli.py",
"--skip",
"workspacebuilder.py",
]
)


def test_websockets(tmpdir):
Expand Down

0 comments on commit 47882c5

Please sign in to comment.