<!-- If this is a feature request, make sure you search Issues for an existing request before creating a new one! Please utilize the template below to help us resolve your issue. Note that many issues can be resolved by updating to the latest version. --> ### Issue Summary I'm a Fedora packager for `python3-twilio`. I've encountered an error during the build: ``` ERROR: InvocationError for command could not find executable nosetests ``` This comes from the fact that `nose` is apparently required for running the tests, but is not specified in `tests/requirements.txt`. The obvious solution would be simply add it there, however, it is bad to add deprecated library (see: https://nose.readthedocs.io/en/latest, https://fedoraproject.org/wiki/Changes/DeprecateNose). My proposal is to replace [this invocation](https://github.com/twilio/twilio-python/blob/5011a4b07671b0cbbd1e6f960942adfffcc10ca9/tox.ini#L8) with `pytest`. I've made a patch in Fedora, and it works fine.