For some reason the requirements_test.txt file listed pycparser as a requirement, although its never used anywhere. I presume this was left over from an earlier time?
Also, the tests require robotd and sb-vision to be available.
I've unfamiliar with python packaging idioms - have I done this correctly?
Oh, it looks like adding robotd and sb-vision to requirements_test.txt breaks the CI, since they're installed separately. I guess I can add them to setup.py but not to requirements_test.txt?
For some reason the
requirements_test.txt
file listedpycparser
as a requirement, although its never used anywhere. I presume this was left over from an earlier time?Also, the tests require
robotd
andsb-vision
to be available.I've unfamiliar with python packaging idioms - have I done this correctly?