Skip to content
Snippets Groups Projects
Select Git revision
  • 10a70a93fc397f41230dad588ff1a8e65b0efbe9
  • master default protected
  • dev_fl
  • flemoine-master-patch-48018
  • v8.8
  • v8.7.0
  • v8.6.0
  • v8.5.0
  • v8.4.0
  • v8.3.0
  • v8.2.0
  • v8.1.0
  • v8.0.0
  • v7.10.0
  • v7.9.0
  • v7.8.0
  • v7.7.0
  • v7.6.0
  • v7.5.0
  • v7.4.0
  • v7.3.0
  • v7.2.0
  • v7.1.0
  • v7.0.0
24 results

plot_coverage.R

Blame
  • main.py 449 B
    #!/usr/bin/env python3
    import importlib
    
    from tutor.plugins import Plugins
    
    # Manually install plugins (this is for creating the bundle)
    for plugin in ["discovery", "ecommerce", "figures", "lts", "minio", "notes", "xqueue"]:
        try:
            module = importlib.import_module("tutor{}.plugin".format(plugin))
        except ImportError:
            pass
        else:
            Plugins.EXTRA_INSTALLED[plugin] = module
    
    from tutor.commands.cli import main
    
    main()