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.
1 parent 309ce91 commit 1e4a507Copy full SHA for 1e4a507
1 file changed
tests/test_utils.py
@@ -680,7 +680,9 @@ def test_expand_args(monkeypatch):
680
monkeypatch.setenv("CLICK_TEST", "hello")
681
assert "hello" in click.utils._expand_args(["$CLICK_TEST"])
682
assert "pyproject.toml" in click.utils._expand_args(["*.toml"])
683
- 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(
684
+ ["**/conftest.py"]
685
+ )
686
assert "*.not-found" in click.utils._expand_args(["*.not-found"])
687
# a bad glob pattern, such as a pytest identifier, should return itself
688
assert click.utils._expand_args(["test.py::test_bad"])[0] == "test.py::test_bad"
0 commit comments