Skip to content

Commit

Permalink
fix: make versionc all in tests dynamic (#517)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu-codecov authored Oct 1, 2024
1 parent ab27ada commit f4c17e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/commands/test_process_test_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

from click.testing import CliRunner

from codecov_cli import __version__
from codecov_cli.main import cli
from codecov_cli.types import RequestResult

Expand Down Expand Up @@ -53,7 +54,7 @@ def test_process_test_results(
"codecov_yml_path": None,
"enterprise_url": None,
"verbose": False,
"version": "cli-0.7.4",
"version": f"cli-{__version__}",
"command": "process-test-results",
"provider_token": "whatever",
"disable_search": True,
Expand Down

0 comments on commit f4c17e1

Please sign in to comment.