mirror of https://github.com/zulip/zulip.git
billing: Move billing tests from zilencer to corporate.
This commit is contained in:
parent
c01ebaa8d8
commit
59865797ac
|
@ -48,7 +48,7 @@ log_to_file(logging.getLogger('stripe'), BILLING_LOG_PATH)
|
||||||
# Then you can run e.g. `M-x mark-whole-buffer` and `M-x indent-region` in emacs
|
# Then you can run e.g. `M-x mark-whole-buffer` and `M-x indent-region` in emacs
|
||||||
# to prettify the file (and make 4 space indents).
|
# to prettify the file (and make 4 space indents).
|
||||||
# * Copy out the customer id, plan id, and quantity values into
|
# * Copy out the customer id, plan id, and quantity values into
|
||||||
# zilencer.tests.test_stripe.StripeTest.setUp.
|
# corporate.tests.test_stripe.StripeTest.setUp.
|
||||||
# * Set PRINT_STRIPE_FIXTURE_DATA to False
|
# * Set PRINT_STRIPE_FIXTURE_DATA to False
|
||||||
PRINT_STRIPE_FIXTURE_DATA = False
|
PRINT_STRIPE_FIXTURE_DATA = False
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ target_fully_covered = {path for target in [
|
||||||
# Test files should have 100% coverage; test code that isn't run
|
# Test files should have 100% coverage; test code that isn't run
|
||||||
# is likely a bug in the test.
|
# is likely a bug in the test.
|
||||||
'zerver/tests/*.py',
|
'zerver/tests/*.py',
|
||||||
'zilencer/tests/*.py',
|
'corporate/tests/*.py',
|
||||||
# As a project, we require 100% test coverage in the views files.
|
# As a project, we require 100% test coverage in the views files.
|
||||||
'zerver/views/*.py',
|
'zerver/views/*.py',
|
||||||
'zproject/backends.py',
|
'zproject/backends.py',
|
||||||
|
@ -320,7 +320,7 @@ if __name__ == "__main__":
|
||||||
"zerver.tests",
|
"zerver.tests",
|
||||||
"zerver.webhooks",
|
"zerver.webhooks",
|
||||||
"analytics.tests",
|
"analytics.tests",
|
||||||
"zilencer.tests",
|
"corporate.tests",
|
||||||
]
|
]
|
||||||
else:
|
else:
|
||||||
suites = args
|
suites = args
|
||||||
|
|
Loading…
Reference in New Issue