Skip to content

Instantly share code, notes, and snippets.

@pauloxnet
Last active December 29, 2023 22:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pauloxnet/7200c914a8c52d4442d457a4e90414b5 to your computer and use it in GitHub Desktop.
Save pauloxnet/7200c914a8c52d4442d457a4e90414b5 to your computer and use it in GitHub Desktop.
Coverage 7.4.0 with Django 5.1 dev
(django) paulox@net:~/Projects/django/tests$ COVERAGE_CORE=sysmon time python -m coverage run ./runtests.py --settings=test_sqlite --parallel=1
Testing against Django installed in '/home/paulox/Projects/django/django'
Found 16768 test(s).
Creating test database for alias 'default'...
Creating test database for alias 'other'...
System check identified no issues (17 silenced).
...............................................
Ran 16766 tests in 1724.237s
OK (skipped=1323, expected failures=5)
Destroying test database for alias 'default'...
Destroying test database for alias 'other'...
1641.66user 135.93system 30:50.74elapsed 96%CPU (0avgtext+0avgdata 1055048maxresident)k
0inputs+566448outputs (10major+42349821minor)pagefaults 0swaps
(django) paulox@net:~/Projects/django/tests$ time python -m coverage run ./runtests.py --settings=test_sqlite --parallel=1
Testing against Django installed in '/home/paulox/Projects/django/django'
Found 16768 test(s).
Creating test database for alias 'default'...
Creating test database for alias 'other'...
System check identified no issues (17 silenced).
...........................................
Ran 16766 tests in 624.729s
OK (skipped=1323, expected failures=5)
Destroying test database for alias 'default'...
Destroying test database for alias 'other'...
real 10m51.393s
user 9m15.189s
sys 0m25.182s
(django) paulox@net:~/Projects/django/tests$ time ./runtests.py --settings=test_sqlite --parallel=1
Testing against Django installed in '/home/paulox/Projects/django/django'
Found 16768 test(s).
Creating test database for alias 'default'...
Creating test database for alias 'other'...
System check identified no issues (17 silenced).
...............................................
Ran 16766 tests in 480.903s
OK (skipped=1323, expected failures=5)
Destroying test database for alias 'default'...
Destroying test database for alias 'other'...
real 8m15.249s
user 6m41.306s
sys 0m22.540s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment