A library that computes the ephemerides.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
426 B

  1. #!/usr/bin/env python3
  2. from doctest import testmod, NORMALIZE_WHITESPACE
  3. from kosmorrolib import *
  4. if __name__ == "__main__":
  5. failures = 0
  6. tests = 0
  7. for module in [events, ephemerides, model]:
  8. (f, t) = testmod(module, optionflags=NORMALIZE_WHITESPACE)
  9. failures += f
  10. tests += t
  11. if failures == 0:
  12. print("All %d tests successfully passed." % tests)
  13. else:
  14. exit(1)