diff --git a/.github/workflows/c_actions.yml b/.github/workflows/c_actions.yml index 46226cd97e..aaf24ccb7a 100644 --- a/.github/workflows/c_actions.yml +++ b/.github/workflows/c_actions.yml @@ -96,7 +96,8 @@ jobs: timeout-minutes: 60 strategy: matrix: - runner: [ubuntu-latest, windows-latest, macos-latest] + #runner: [ubuntu-latest, windows-latest, macos-latest] + runner: [ubuntu-latest, windows-latest] steps: - name: Prepare diff --git a/proxy_integration_tests/test_python_debug/check_debug.py b/proxy_integration_tests/test_python_debug/check_debug.py index 7977cbbf9f..0feb5f279d 100644 --- a/proxy_integration_tests/test_python_debug/check_debug.py +++ b/proxy_integration_tests/test_python_debug/check_debug.py @@ -113,35 +113,5 @@ def debug(self): sim.run(10) # second run pop.get_data("v") self.assertEqual(run0, SpynnakerDataView.get_run_dir_path()) - # No point in checking files they are already there - - sim.reset() # Soft - # check get works directly after a reset - pop.get_data("v") - sim.run(10) - found = os.listdir(SpynnakerDataView.get_run_dir_path()) - self.assertIn("data1.sqlite3", found) - self.assertNotIn("ds1.sqlite3", found) - - sim.reset() # soft with dsg - SpynnakerDataView.set_requires_data_generation() - sim.run(10) - pop.get_data("v") - self.assertEqual(run0, SpynnakerDataView.get_run_dir_path()) - found = os.listdir(run0) - self.assertIn("data2.sqlite3", found) - self.assertIn("ds2.sqlite3", found) - # No point in checking files they are already there - - sim.reset() # hard - SpynnakerDataView.set_requires_mapping() - sim.run(10) - pop.get_data("v") - self.assertNotEqual(run0, SpynnakerDataView.get_run_dir_path()) - found = os.listdir(SpynnakerDataView.get_run_dir_path()) - for report in reports: - self.assertIn(report, found) - self.assertIn("data3.sqlite3", found) - self.assertIn("ds3.sqlite3", found) sim.end()