소스 검색

Merge pull request #1983 from mnowster/update-testing-docs

Running a single test command updated
Daniel Nephin 10 년 전
부모
커밋
d84ee667ad
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      CONTRIBUTING.md

+ 2 - 2
CONTRIBUTING.md

@@ -64,8 +64,8 @@ you can specify a test directory, file, module, class or method:
 
     $ script/test tests/unit
     $ script/test tests/unit/cli_test.py
-    $ script/test tests.integration.service_test
-    $ script/test tests.integration.service_test:ServiceTest.test_containers
+    $ script/test tests/unit/config_test.py::ConfigTest
+    $ script/test tests/unit/config_test.py::ConfigTest::test_load
 
 ## Finding things to work on