We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e27b307 + 1e4a507 commit ea70da4Copy full SHA for ea70da4
tests/test_utils.py
@@ -704,7 +704,9 @@ def test_expand_args(monkeypatch):
704
monkeypatch.setenv("CLICK_TEST", "hello")
705
assert "hello" in click.utils._expand_args(["$CLICK_TEST"])
706
assert "pyproject.toml" in click.utils._expand_args(["*.toml"])
707
- assert os.path.join("docs", "conf.py") in click.utils._expand_args(["**/conf.py"])
+ assert os.path.join("tests", "conftest.py") in click.utils._expand_args(
708
+ ["**/conftest.py"]
709
+ )
710
assert "*.not-found" in click.utils._expand_args(["*.not-found"])
711
# a bad glob pattern, such as a pytest identifier, should return itself
712
assert click.utils._expand_args(["test.py::test_bad"])[0] == "test.py::test_bad"
0 commit comments