Skip to content

Commit

Permalink
players -> aimmo
Browse files Browse the repository at this point in the history
  • Loading branch information
mrniket committed Jul 9, 2018
1 parent 9da56db commit 82e530e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aimmo_runner/minikube.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def create_creator_yaml():
"""
orig_path = os.path.join(BASE_DIR, 'aimmo-game-creator', 'rc-aimmo-game-creator.yaml')
with open(orig_path) as orig_file:
content = yaml.safe_load(orig_file.read().replace('latest', 'test').replace('REPLACE_ME', 'http://%s:8000/players/api/games/' % get_ip()))
content = yaml.safe_load(orig_file.read().replace('latest', 'test').replace('REPLACE_ME', 'http://%s:8000/aimmo/api/games/' % get_ip()))
return content


Expand Down
2 changes: 1 addition & 1 deletion all_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def main():

def run_tests(compute_coverage):
def app_name(app):
return 'players' if app == '' else app
return 'aimmo' if app == '' else app

failed_apps = []
for app in APPS:
Expand Down
2 changes: 1 addition & 1 deletion docs/testing/test-plan.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class Avatar(object):
### Check the following:
**Prior to playing the game:**
* Ensure there are no custom games running (Watch menu).
* Go to Program->Create a new game (/players/games/new). Select any name, select yourself in the 'Can Play' menu.
* Go to Program->Create a new game (/aimmo/games/new). Select any name, select yourself in the 'Can Play' menu.
* Ensure 'Generator' is set to "Open World". Save, watch.
* A grid should show with an avatar moving around randomly.
* The score location should move randomly from time to time (depending on settings).
Expand Down

0 comments on commit 82e530e

Please sign in to comment.