Commit 999a648c by Diana Huang

Merge branch 'master' into diana/fix-sa-tests

parents 89055da8 878640b6
...@@ -338,6 +338,10 @@ def course_beta_test_group_name(location): ...@@ -338,6 +338,10 @@ def course_beta_test_group_name(location):
""" """
return 'beta_testers_{0}'.format(Location(location).course) return 'beta_testers_{0}'.format(Location(location).course)
# nosetests thinks that anything with _test_ in the name is a test.
# Correct this (https://nose.readthedocs.org/en/latest/finding_tests.html)
course_beta_test_group_name.__test__ = False
def _course_instructor_group_name(location): def _course_instructor_group_name(location):
""" """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment