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.py
Run tests matching a given name
$ py.test -v --tb=short group_project/assignment_1.py -k odd
Run all the tests
$ py.test -v --tb=short group_project
# OR
$ make test
Testing Python versions with TOX
$ tox -epy27