Skip to content

Commit

Permalink
Merge pull request #506 from SpiNNakerManchester/remove_installed
Browse files Browse the repository at this point in the history
more direct way to directory
  • Loading branch information
Christian-B committed Apr 14, 2023
2 parents c78ed4b + beebaf6 commit bd2a5d2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions unittests/test_cfg_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
import unittest
from spinn_utilities.config_holder import run_config_checks
from pacman.config_setup import unittest_setup
import pacman
import pacman_test_objects


class TestCfgChecker(unittest.TestCase):
Expand All @@ -26,9 +28,7 @@ def setUpClass(cls):

def test_cfg_check(self):
unittests = os.path.dirname(__file__)
parent = os.path.dirname(unittests)
pacman = os.path.join(parent, "pacman")
integration_tests = os.path.join(parent, "pacman_integration_tests")
uinit_test_objects = os.path.join(parent, "pacman_test_objects")
pacman_dir = pacman.__path__[0]
uinit_test_objects = pacman_test_objects.__path__[0]
run_config_checks(directories=[
pacman, integration_tests, unittests, uinit_test_objects])
pacman_dir, unittests, uinit_test_objects])

0 comments on commit bd2a5d2

Please sign in to comment.