From 1e2892044010bb148d8e124beb12a6107e0e27c8 Mon Sep 17 00:00:00 2001 From: Disconnect3d Date: Mon, 20 Sep 2021 22:27:41 +0200 Subject: [PATCH] Stop skipping tests --- tests/test_loads.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_loads.py b/tests/test_loads.py index 092b30586..df5e25971 100644 --- a/tests/test_loads.py +++ b/tests/test_loads.py @@ -73,7 +73,6 @@ def test_loads_pure_gdb_without_crashing(): assert output == HELLO -@pytest.mark.skipif(launched_locally, reason='This test uses binaries compiled on travis builds.') def test_loads_binary_without_crashing(): if not os.path.isfile(BINARY): compile_binary(BINARY_SOURCE, BINARY) @@ -86,7 +85,6 @@ def test_loads_binary_without_crashing(): assert all(item in output for item in expected) -@pytest.mark.skipif(launched_locally, reason='This test uses binaries compiled on travis builds.') def test_loads_binary_with_core_without_crashing(): if not os.path.isfile(BINARY): compile_binary(BINARY_SOURCE, BINARY) @@ -115,7 +113,6 @@ def test_loads_binary_with_core_without_crashing(): assert any([crash_address_line.match(line) for line in output]) -@pytest.mark.skipif(launched_locally, reason='This test uses binaries compiled on travis builds.') def test_loads_core_without_crashing(): if not os.path.isfile(BINARY): compile_binary(BINARY_SOURCE, BINARY)