Skip to content

Commit

Permalink
Merge pull request #75 from SpiNNakerManchester/remove_installed
Browse files Browse the repository at this point in the history
Remove installed
  • Loading branch information
Christian-B authored Apr 14, 2023
2 parents c3d3d39 + 031ea2c commit 2109527
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
9 changes: 4 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,10 @@ include =
spinn_gym
spinn_gym.*

# We expect the c files to always be built. If not uncomment below
# [options.package_data]
# * =
# *.aplx
# *.dict
[options.package_data]
* =
*.aplx
*.dict

[options.extras_require]
test =
Expand Down
5 changes: 3 additions & 2 deletions unittests/test_cfg_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import unittest
from spinn_utilities.config_holder import run_config_checks
from spynnaker.pyNN.config_setup import unittest_setup
import spinn_gym


class TestCfgChecker(unittest.TestCase):
Expand All @@ -27,8 +28,8 @@ def setUp(self):
def test_config_checks(self):
unittests = os.path.dirname(__file__)
parent = os.path.dirname(unittests)
spinn_gym = os.path.join(parent, "spinn_gym")
spinn_gym_dir = spinn_gym.__path__[0]
examples = os.path.join(parent, "examples")
integration_tests = os.path.join(parent, "integration_tests")
run_config_checks(directories=[
spinn_gym, examples, integration_tests, unittests])
spinn_gym_dir, examples, integration_tests, unittests])

0 comments on commit 2109527

Please # to comment.