Encountering Import File Mismatch in Testing
Opened this issue · 2 comments
I'm attempting to install and test the python astrodynamics software on a Mac Pro running Mac OS X (ver. 10.12.1) Sierra under Python 2.7.12 in the Anaconda distribution.
I cloned astrodynamics from GitHub and installed the software from its high level directory using the command, python setup.py install. The installation appeared successful, but when I executed the command, conda list, astrodynamics failed appear. See the file conda_list.txt attached to this file. What is going on here?
When I run the tests using the command, python runtests.py, I got file mismatch errors as indicated in the file instellation and test of astrodynamics.txt. My question here is how does one fix this problem?
Please advise.
Sam Dupree.
Upgrading to pytest 3 will prevent the file mismatch errors. runtests.py
is deprecated, you can use python setup.py test
or just pytest
.
runtests.py
has been removed on the downloadspk and frames branches.
pip install .
should be used in favour of python setup.py install
. It should then show up in conda list
.