Skip to content
Snippets Groups Projects
Select Git revision
  • 459b71b14eff9cf669f24b369c9050bbde7eec5e
  • main default
  • full_migration
  • v1.0.9 protected
  • v1.0.8 protected
  • v1.0.7 protected
  • v1.0.6 protected
  • v1.0.5 protected
  • v1.0.4 protected
  • v1.0.3 protected
  • v1.0.2 protected
  • v1.0.1 protected
  • v1.0 protected
13 results

run_tests.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    run_tests.py 319 B
    #!/usr/bin/env python3
    
    if __name__ == '__main__':
        import app
        import unittest
        app.api_app.testing = True
        # This is always run from src/
        suite = unittest.defaultTestLoader.discover("../tests/", pattern="*", top_level_dir="../tests")
        unittest.TextTestRunner(verbosity=2, failfast=True).run(suite)