Skip to content

Commit

Permalink
fix parsing in performance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jouramie committed Mar 4, 2024
1 parent 573a4fc commit 97434d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/stardew_valley/test/performance/TestPerformance.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def setUpClass(cls) -> None:

fill_tests_key = "fill"
if fill_tests_key in os.environ:
cls.skip_fill = not bool(os.environ[fill_tests_key])
cls.skip_fill = os.environ[fill_tests_key] != "True"

fixed_seed_key = "fixed_seed"
if fixed_seed_key in os.environ:
Expand Down

0 comments on commit 97434d5

Please sign in to comment.