Bamboo tests were failing due to some dependency conflicts in test_requirements.txt. Looking at that file, I found that many of these requirements were not necessary. I likely copied this file from another repo when I created it and did not think hard about what was required here.
repo changes
removes test_requirements.txt and moves the few truly required requirements over to requirements.txt
removes ability to run tests through python setup.py test. Tests should now be run with python -m pytest
Bamboo tests were failing due to some dependency conflicts in
test_requirements.txt
. Looking at that file, I found that many of these requirements were not necessary. I likely copied this file from another repo when I created it and did not think hard about what was required here.repo changes
test_requirements.txt
and moves the few truly required requirements over torequirements.txt
python setup.py test
. Tests should now be run withpython -m pytest
bamboo build notes
python -m pytest