A library that computes the ephemerides.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

21 行
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)