We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5efdc8f commit 4e744d4Copy full SHA for 4e744d4
1 file changed
tests/gpu/torch/puzzletron/test_puzzletron.py
@@ -155,12 +155,8 @@ def _test_puzzletron_multiprocess_job(
155
solution_0_ckpt_config_path = (
156
solution_dir / "solutions--checkpoints/solution_0/config.json"
157
)
158
- assert solution_0_ckpt_config_path.exists(), (
159
- f"Expected {solution_0_ckpt_config_path} to exist"
160
- )
161
- assert (solution_dir / "solutions.json").exists(), (
162
- f"Expected {solution_dir / 'solutions.json'} to exist"
163
+ assert solution_0_ckpt_config_path.exists()
+ assert (solution_dir / "solutions.json").exists()
164
else:
165
# assertions for the score_pruning_activations step 1 (FFN pruning)
166
_assert_score_pruning_activations(puzzle_dir, hf_config_name)
0 commit comments