victorlei / smop

Small Matlab to Python compiler
MIT License
1.08k stars 410 forks source link

Test failures when attempting to add travis ci #113

Open ghost opened 7 years ago

ghost commented 7 years ago

When attempting to test this project with travis-ci, I received the following failures:

==================================== ERRORS ====================================
_____________________ ERROR collecting smop/test_primes.py _____________________
ImportError while importing test module '/home/travis/build/xoviat/smop/smop/test_primes.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
smop/test_primes.py:1: in <module>
    import octave
E   ImportError: No module named octave
____________________ ERROR collecting smop/test_runtime.py _____________________
ImportError while importing test module '/home/travis/build/xoviat/smop/smop/test_runtime.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
smop/test_runtime.py:7: in <module>
    from runtime import *
E   ImportError: No module named runtime
_____________________ ERROR collecting smop/test_solver.py _____________________
ImportError while importing test module '/home/travis/build/xoviat/smop/smop/test_solver.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
smop/test_solver.py:3: in <module>
    from solver import *
E   ImportError: No module named solver
!!!!!!!!!!!!!!!!!!! Interrupted: 3 errors during collection !!!!!!!!!!!!!!!!!!!!
=========================== 3 error in 3.30 seconds ============================

Where are these modules? Were they removed?