File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -60,13 +60,13 @@ def test_tests_collected_once() -> None:
60
60
ci_patterns = _ci_patterns ()
61
61
tests_to_patterns : dict [str , set [str ]] = {}
62
62
for pattern in ci_patterns :
63
- pattern = "tests/mock_vws/" + pattern
64
- tests = _tests_from_pattern (ci_pattern = pattern )
63
+ pattern_in_dir = "tests/mock_vws/" + pattern
64
+ tests = _tests_from_pattern (ci_pattern = pattern_in_dir )
65
65
for test in tests :
66
66
if test in tests_to_patterns :
67
- tests_to_patterns [test ].add (pattern )
67
+ tests_to_patterns [test ].add (pattern_in_dir )
68
68
else :
69
- tests_to_patterns [test ] = {pattern }
69
+ tests_to_patterns [test ] = {pattern_in_dir }
70
70
71
71
for test_name , patterns in tests_to_patterns .items ():
72
72
message = (
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ pytest-cov==4.0.0 # Measure code coverage
21
21
pytest-envfiles==0.1.0 # Use files for environment variables for tests
22
22
pytest==7.2.1 # Test runners
23
23
requests-mock-flask==2022.4.3
24
- ruff==0.0.251
24
+ ruff==0.0.253
25
25
sphinx-autodoc-typehints==1.22
26
26
sphinx-prompt==1.5.0
27
27
sphinx_paramlinks==0.5.4
You can’t perform that action at this time.
0 commit comments