Skip to content

Commit

Permalink
fix: remove brackets to not trigger selector code
Browse files Browse the repository at this point in the history
  • Loading branch information
beckermr committed Nov 6, 2024
1 parent c7c773b commit 4120b7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_api_build_conda_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def test_conda_pkg_format(

# Recipe "entry_points" is used in other test -> add test-specific variant
# (change build hash) to avoid clashes in package cache from other tests.
variants = {"pytest_name": [request.node.name]}
variants = {"pytest_name": [request.node.name.replace("[", "").replace("]", "")]}
(output_file,) = api.get_output_file_paths(
recipe, config=testing_config, variants=variants
)
Expand Down

0 comments on commit 4120b7f

Please sign in to comment.