From 6b9f8660d6ee7b7abd64698bcc6ac545ed0db7f7 Mon Sep 17 00:00:00 2001 From: Mateusz Masiarz Date: Sat, 23 Sep 2023 15:13:04 +0200 Subject: [PATCH] Revert "Add test" This reverts commit 902abc464805d3d0b7c50cc9218be64ca0a48132. --- tests/commands/run/test_integration.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/tests/commands/run/test_integration.py b/tests/commands/run/test_integration.py index f7a599e1..c9837a8c 100644 --- a/tests/commands/run/test_integration.py +++ b/tests/commands/run/test_integration.py @@ -553,17 +553,3 @@ def test_flag_tests_not_existing_tests(create_package, time_tool, capsys): assert e.value.code == 1 out = capsys.readouterr().out assert "There are no tests to run." in out - - -@pytest.mark.parametrize("create_package", [get_simple_package_path()], indirect=True) -def test_cwd_in_prog(create_package): - """ - Test if `sinol-make` works when cwd is in prog. - """ - package_path = create_package - os.chdir("prog") - create_ins_outs(package_path) - parser = configure_parsers() - args = parser.parse_args(["run"]) - command = Command() - command.run(args)