An AI solution to an implementation of the Wumpus World Game
- python 2.7
- unix style operating system
$ pip install virtualenv
$ virtualenv venv
$ source venv/bin/activate
-
Activate your virtual environment
-
$ pip install requirements-dev.txt
This will make git run tests before you make a commit
From the root directory of your project:
$ echo "./run-tests.sh" > .git/hooks/pre-commit
$ chomd +x .git/hooks/pre-commit
- Create a new branch to do changes on
- Branch should be appropriately named for the changes made
- Create a PR from your branch to master
- After your branch receives a
+1
it can be merged