Skip to content

Commit

Permalink
fix(fill): add ci to environment section in fixtures.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
danceratopz committed Jun 14, 2024
1 parent 045f1eb commit f127be6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pytest_plugins/test_filler/test_filler.py
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ def create_properties_file(request, output_dir: Path) -> None:
for key, val in request.config.stash[metadata_key].items():
if key.lower() == "command-line args":
continue
if key.lower() in ["python", "platform"]:
if key.lower() in ["ci", "python", "platform"]:
environment_properties[key] = val
elif isinstance(val, dict):
config[key.lower()] = val
Expand Down

0 comments on commit f127be6

Please sign in to comment.