Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dns hack #1480

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/c_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
30 changes: 0 additions & 30 deletions proxy_integration_tests/test_python_debug/check_debug.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()