This converts the testing infrastructure to tox for both locally testing and travis. This is nearly equivalent to the previous testing with the only exception that linting fails with the first tool to fail and won't process all of them. Slightly tricky thing is that tox resets *all* of the environment for it's subprocess runs by default. A couple of the dependencies we have will not install in non UTF8 locales: temper-python & XBee.
6 lines
145 B
Bash
Executable file
6 lines
145 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# NOTE: all testing is now driven through tox. The tox command below
|
|
# performs roughly what this test did in the past.
|
|
|
|
tox -e py34
|