This project consists of small assignment functions to work in groups and practice control flow and strings methods. It'll also be useful to introduce you to our Github workflow.
Run tests for just one assignment
$ py.test -v --tb=short group_project/assignment_1.pyRun tests matching a given name
$ py.test -v --tb=short group_project/assignment_1.py -k oddRun all the tests
$ py.test -v --tb=short group_project
# OR
$ make testTesting Python versions with TOX
$ tox -epy27

