mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed #34810 -- Measured test coverage on django-admin commands.
This commit is contained in:
		| @@ -1,7 +1,7 @@ | ||||
| [run] | ||||
| branch = True | ||||
| concurrency = multiprocessing,thread | ||||
| data_file = .coverages/.coverage | ||||
| data_file = ${RUNTESTS_DIR-.}/.coverages/.coverage | ||||
| omit = | ||||
|     */django/utils/autoreload.py | ||||
| source = django | ||||
|   | ||||
| @@ -71,6 +71,10 @@ tempfile.tempdir = os.environ["TMPDIR"] = TMPDIR | ||||
| # Removing the temporary TMPDIR. | ||||
| atexit.register(shutil.rmtree, TMPDIR) | ||||
|  | ||||
| # Add variables enabling coverage to trace code in subprocesses. | ||||
| os.environ["RUNTESTS_DIR"] = RUNTESTS_DIR | ||||
| os.environ["COVERAGE_PROCESS_START"] = os.path.join(RUNTESTS_DIR, ".coveragerc") | ||||
|  | ||||
|  | ||||
| # This is a dict mapping RUNTESTS_DIR subdirectory to subdirectories of that | ||||
| # directory to skip when searching for test modules. | ||||
|   | ||||
							
								
								
									
										6
									
								
								tests/sitecustomize.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								tests/sitecustomize.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,6 @@ | ||||
| try: | ||||
|     import coverage | ||||
| except ImportError: | ||||
|     pass | ||||
| else: | ||||
|     coverage.process_startup() | ||||
		Reference in New Issue
	
	Block a user