mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
refactor: Rename test_bugdown.py to test_markdown.py.
Rename the file and all the refrences to file and module test_bugdown.py to test_markdown.py. This commit is part of series of commit that renames bugdown to markdown.
This commit is contained in:
@@ -196,12 +196,12 @@ def main() -> None:
|
||||
|
||||
usage = """test-backend [options]
|
||||
test-backend # Runs all backend tests
|
||||
test-backend zerver.tests.test_bugdown # run all tests in a test module
|
||||
test-backend zerver/tests/test_bugdown.py # run all tests in a test module
|
||||
test-backend test_bugdown # run all tests in a test module
|
||||
test-backend zerver.tests.test_bugdown.BugdownTest # run all tests in a test class
|
||||
test-backend zerver.tests.test_markdown # run all tests in a test module
|
||||
test-backend zerver/tests/test_markdown.py # run all tests in a test module
|
||||
test-backend test_markdown # run all tests in a test module
|
||||
test-backend zerver.tests.test_markdown.BugdownTest # run all tests in a test class
|
||||
test-backend BugdownTest # run all tests in a test class
|
||||
test-backend zerver.tests.test_bugdown.BugdownTest.test_inline_youtube # run a single test
|
||||
test-backend zerver.tests.test_markdown.BugdownTest.test_inline_youtube # run a single test
|
||||
test-backend BugdownTest.test_inline_youtube # run a single test"""
|
||||
|
||||
parser = argparse.ArgumentParser(description=usage,
|
||||
|
||||
Reference in New Issue
Block a user