Skip to content

Commit 815ef80

Browse files
committed
cleanup
1 parent ccaf016 commit 815ef80

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

test/conftest.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,13 @@
66
from typer.testing import CliRunner
77
import os
88

9-
# @pytest.fixture(scope="session")
10-
# def session_temp_path(tmp_path_factory):
11-
# return tmp_path_factory.mktemp()
12-
139
ON_GITHUB_ACTIONS = False
1410
if "GITHUB_ACTION" in os.environ:
1511
ON_GITHUB_ACTIONS = True
1612

1713

1814
@pytest.fixture(scope="session")
1915
def env_prefix(tmp_path_factory):
20-
# env_root = Path(appdirs.user_data_dir("pytest_code_runner_tests", "DerThorsten"))
21-
# env_root.mkdir(exist_ok=True, parents=True)
22-
# env_prefix = Path(env_root) / "testenv"
2316

2417
env_root = tmp_path_factory.mktemp("pytest_code_runner_tests")
2518
env_prefix = Path(env_root) / "testenv"

test/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def test_help(self, runner):
2020
def test_sync_err(
2121
self, env_prefix, em_work_dir, backend_cli_settings, tmpdir, runner
2222
):
23-
print("sync_err", env_prefix, em_work_dir, backend_cli_settings, tmpdir)
23+
2424
backend_type, backend_args = backend_cli_settings
2525

2626
to_mount_dir = tmpdir

0 commit comments

Comments
 (0)