Simple app to add configuration options to a Django project.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pytest coverage

+17 -17
+16 -16
poetry.lock
··· 35 35 version = ">=1.4.0,<1.5" 36 36 37 37 [[package]] 38 - category = "main" 38 + category = "dev" 39 39 description = "Atomic file writes." 40 40 marker = "sys_platform == \"win32\"" 41 41 name = "atomicwrites" ··· 44 44 version = "1.4.0" 45 45 46 46 [[package]] 47 - category = "main" 47 + category = "dev" 48 48 description = "Classes Without Boilerplate" 49 49 name = "attrs" 50 50 optional = false ··· 86 86 version = "7.1.2" 87 87 88 88 [[package]] 89 - category = "main" 89 + category = "dev" 90 90 description = "Cross-platform colored terminal text." 91 91 marker = "sys_platform == \"win32\"" 92 92 name = "colorama" ··· 95 95 version = "0.4.3" 96 96 97 97 [[package]] 98 - category = "main" 98 + category = "dev" 99 99 description = "Code coverage measurement for Python" 100 100 name = "coverage" 101 101 optional = false ··· 165 165 text-unidecode = "1.3" 166 166 167 167 [[package]] 168 - category = "main" 168 + category = "dev" 169 169 description = "Read metadata from Python packages" 170 170 marker = "python_version < \"3.8\"" 171 171 name = "importlib-metadata" ··· 211 211 version = "0.6.1" 212 212 213 213 [[package]] 214 - category = "main" 214 + category = "dev" 215 215 description = "More routines for operating on iterables, beyond itertools" 216 216 name = "more-itertools" 217 217 optional = false ··· 219 219 version = "8.4.0" 220 220 221 221 [[package]] 222 - category = "main" 222 + category = "dev" 223 223 description = "Core utilities for Python packages" 224 224 name = "packaging" 225 225 optional = false ··· 239 239 version = "0.8.0" 240 240 241 241 [[package]] 242 - category = "main" 242 + category = "dev" 243 243 description = "plugin and hook calling mechanisms for python" 244 244 name = "pluggy" 245 245 optional = false ··· 255 255 dev = ["pre-commit", "tox"] 256 256 257 257 [[package]] 258 - category = "main" 258 + category = "dev" 259 259 description = "library with cross-python path, ini-parsing, io, code, log facilities" 260 260 name = "py" 261 261 optional = false ··· 278 278 toml = ">=0.7.1" 279 279 280 280 [[package]] 281 - category = "main" 281 + category = "dev" 282 282 description = "Python parsing module" 283 283 name = "pyparsing" 284 284 optional = false ··· 286 286 version = "2.4.7" 287 287 288 288 [[package]] 289 - category = "main" 289 + category = "dev" 290 290 description = "pytest: simple powerful testing with Python" 291 291 name = "pytest" 292 292 optional = false ··· 312 312 testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] 313 313 314 314 [[package]] 315 - category = "main" 315 + category = "dev" 316 316 description = "Pytest plugin for measuring coverage." 317 317 name = "pytest-cov" 318 318 optional = false ··· 369 369 version = "2020.6.8" 370 370 371 371 [[package]] 372 - category = "main" 372 + category = "dev" 373 373 description = "Python 2 and 3 compatibility utilities" 374 374 name = "six" 375 375 optional = false ··· 409 409 version = "1.4.1" 410 410 411 411 [[package]] 412 - category = "main" 412 + category = "dev" 413 413 description = "Measures the displayed width of unicode strings in a terminal" 414 414 name = "wcwidth" 415 415 optional = false ··· 425 425 version = "1.12.1" 426 426 427 427 [[package]] 428 - category = "main" 428 + category = "dev" 429 429 description = "Backport of pathlib-compatible object wrapper for zip files" 430 430 marker = "python_version < \"3.8\"" 431 431 name = "zipp" ··· 438 438 testing = ["jaraco.itertools", "func-timeout"] 439 439 440 440 [metadata] 441 - content-hash = "64775aae2181cd7be111928b0cf19f2d7f250e1cc797c578f57350eab371978a" 441 + content-hash = "92ca706f3bb7791da8f4f9f3b6f0bc94eb2987f7cb40b791a4776fb4efb22ce8" 442 442 python-versions = "^3.7" 443 443 444 444 [metadata.files]
+1 -1
pyproject.toml
··· 19 19 python = "^3.7" 20 20 django = "^3.0.7" 21 21 djangorestframework = "^3.11.0" 22 - pytest-cov = "^2.10.0" 23 22 24 23 [tool.poetry.dev-dependencies] 25 24 pylint = "^2.5.3" ··· 28 27 factory_boy = "^2.12.0" 29 28 django-test-plus = "^1.4.0" 30 29 pytest-django = "^3.9.0" 30 + pytest-cov = "^2.10.0" 31 31 32 32 [build-system] 33 33 requires = ["poetry>=0.12"]