File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
kevm-pyk/src/tests/integration Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import logging
4
4
import sys
5
- from pathlib import Path
6
5
from typing import TYPE_CHECKING , NamedTuple
7
6
8
7
import pytest
24
23
25
24
if TYPE_CHECKING :
26
25
from collections .abc import Callable
26
+ from pathlib import Path
27
27
from typing import Final
28
28
29
29
from pyk .utils import BugReport
@@ -368,14 +368,8 @@ def test_prove_dss(
368
368
tmp_path : Path ,
369
369
caplog : LogCaptureFixture ,
370
370
bug_report : BugReport | None ,
371
- spec_name : str | None ,
372
371
) -> None :
373
372
spec_file = REPO_ROOT / 'tests/specs/mcd/vat-spec.k'
374
- caplog .set_level (logging .INFO )
375
-
376
- if spec_name is not None and str (spec_file ).find (spec_name ) < 0 :
377
- pytest .skip ()
378
-
379
373
_test_prove (
380
374
spec_file ,
381
375
kompiled_target_for ,
@@ -384,7 +378,7 @@ def test_prove_dss(
384
378
False ,
385
379
False ,
386
380
bug_report = bug_report ,
387
- spec_name = spec_name ,
381
+ spec_name = None ,
388
382
workers = 8 ,
389
383
)
390
384
You can’t perform that action at this time.
0 commit comments