mirror of
https://git.freebsd.org/ports.git
synced 2025-07-04 19:09:16 -04:00
- Drop use of cython, only needed for 'from git' builds - Document necessary but not-yet-ported TEST_DEPENDS for our future selves and potential contributors to see. - Update port metadata to match upstream: pkg-desc, WWW URL, LICENSE, COMMENT - Patch setup.py: Add necessary but missing entries to tests_require. For the ones not yet ported, they're fetched from PyPI via setuptools when correctly declared. Move pytest min version requirement from pytest.ini to tests_require where it belongs, so it can be parsed and the right version can be fetched, instead of just failing if its not the required version. - Patch pytest.ini: Strip --cov from pytest args. We don't care about coverage downstream, and it shouldnt be a compulsory (tests_require) dependency, but instead an extras_require, so dont add it to TEST_DEPENDS even though it is a port. Changelog: https://github.com/aio-libs/aiohttp/blob/v3.5.4/CHANGES.rst PR: 228575
11 lines
286 B
INI
11 lines
286 B
INI
--- pytest.ini.orig 2019-01-12 10:13:41 UTC
|
|
+++ pytest.ini
|
|
@@ -1,7 +1,6 @@
|
|
[pytest]
|
|
-addopts = --cov=aiohttp -v -rxXs
|
|
+addopts = -v -rxXs
|
|
filterwarnings = error
|
|
junit_suite_name = aiohttp_test_suite
|
|
norecursedirs = dist docs build .tox .eggs
|
|
-minversion = 3.8.2
|
|
testpaths = tests/
|