Skip to content

Commit

Permalink
test: filter hidden dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Oct 26, 2023
1 parent 9be98a5 commit 62ab1a3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/integration/cli/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
import pytest

__projects_directory__ = Path(__file__).parent / "projects"
__project_names__ = [p.stem for p in __projects_directory__.iterdir() if p.is_dir()]
__project_names__ = [
p.stem for p in __projects_directory__.iterdir() if p.is_dir() and not p.stem.startswith(".")
]


def assert_failure(result, expected_output):
Expand Down

0 comments on commit 62ab1a3

Please sign in to comment.