Skip to content

Commit

Permalink
Remove --system option from nengo_spinnaker_setup
Browse files Browse the repository at this point in the history
Removed until a future time where an *editable* system wide config file exists
as suggested by @mundya.
  • Loading branch information
mossblaser authored and mundya committed Jun 16, 2015
1 parent 28a915d commit 7c09c0b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions nengo_spinnaker/scripts/nengo_spinnaker_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ def main(args=None):
"config file.")

file_group = parser.add_mutually_exclusive_group()
file_group.add_argument("--system", "-s", dest="file",
const="system", action="store_const",
help="Create a system-wide config file.")
file_group.add_argument("--user", "-u", dest="file",
const="user", action="store_const",
help="Create a user-specific config file "
Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/test_nengo_spinnaker_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
def test_bad_args():
# Should fail if more than one config file is specified
with pytest.raises(SystemExit):
main("--system --user".split())
main("--project --user".split())


def test_generate_config_file():
Expand Down

0 comments on commit 7c09c0b

Please sign in to comment.