|
8 | 8 | @pytest.mark.parametrize( |
9 | 9 | "pytest_args", |
10 | 10 | [ |
11 | | - ([]), |
| 11 | + #([]), |
12 | 12 | (["--dataset", "acs"]), |
13 | | - (["--dataset", "cps"]), |
| 13 | + #(["--dataset", "cps"]), |
14 | 14 | # (["--dataset", "acs", "--population", "USA"]), |
15 | 15 | # (["--dataset", "acs", "--population", "USA", "--state", "RI"]), |
16 | | - (["--dataset", "wic", "--year", "2015"]), |
| 16 | + #(["--dataset", "wic", "--year", "2015"]), |
17 | 17 | # (["--dataset", "wic", "--population", "USA", "--state", "RI", "--year", "2015"]), |
18 | 18 | ], |
19 | | - ids=["1", "2", "3", "4"], |
| 19 | + #ids=["1", "2", "3", "4"], |
| 20 | + ids = ['1'], |
20 | 21 | ) |
21 | 22 | def test_release_tests( |
22 | 23 | pytest_args: list[str], release_output_dir: Path, request: pytest.FixtureRequest |
23 | 24 | ) -> None: |
24 | 25 | os.chdir(Path(__file__).parent) # need this to access cli options from conftest.py |
25 | | - base_cmd = ["pytest", "--release", "test_release.py"] |
26 | | - cmd = base_cmd + pytest_args |
| 26 | + base_cmd = ["pytest", "--release", "test_release.py", f"--output-dir={release_output_dir}"] |
| 27 | + cmd = base_cmd + pytest_args + ["--population", "USA"] |
27 | 28 |
|
28 | 29 | # log using job id |
29 | 30 | job_id = request.node.callspec.id |
|
0 commit comments