@@ -35,7 +35,6 @@ clean: clean_platform ## Remove artifacts of test execution, i
35
35
36
36
sterile : clean # # Remove all non-controlled content, even if expensive.
37
37
rm -rf .tox
38
- -docker image rm -f quay.io/pypa/manylinux1_i686 quay.io/pypa/manylinux1_x86_64
39
38
40
39
41
40
CSS = coverage/htmlfiles/style.css
@@ -68,20 +67,6 @@ smoke: ## Run tests quickly with the C tracer in the lowest supported Pytho
68
67
pysmoke : # # Run tests quickly with the Python tracer in the lowest supported Python versions.
69
68
COVERAGE_NO_CTRACER=1 tox -q -e py27,py35 -- $(PYTEST_SMOKE_ARGS )
70
69
71
- DOCKER_RUN = docker run -it --init --rm -v ` pwd ` :/io
72
- RUN_MANYLINUX_X86 = $(DOCKER_RUN ) quay.io/pypa/manylinux1_x86_64 /io/ci/manylinux.sh
73
- RUN_MANYLINUX_I686 = $(DOCKER_RUN ) quay.io/pypa/manylinux1_i686 /io/ci/manylinux.sh
74
-
75
- test_linux : # # Run the tests in Linux under Docker.
76
- # The Linux .pyc files clash with the host's because of file path
77
- # changes, so clean them before and after running tests.
78
- make clean_platform
79
- $(RUN_MANYLINUX_X86 ) test $(ARGS )
80
- make clean_platform
81
-
82
- meta_linux : # # Run meta-coverage in Linux under Docker.
83
- ARGS=" meta $( ARGS) " make test_linux
84
-
85
70
# Coverage measurement of coverage.py itself (meta-coverage). See metacov.ini
86
71
# for details.
87
72
@@ -96,13 +81,6 @@ metahtml: ## Produce meta-coverage HTML reports.
96
81
kit : # # Make the source distribution.
97
82
python setup.py sdist
98
83
99
- wheel : # # Make the wheels for distribution.
100
- tox -c tox_wheels.ini $(ARGS )
101
-
102
- kit_linux : # # Make the Linux wheels.
103
- $(RUN_MANYLINUX_X86 ) build
104
- $(RUN_MANYLINUX_I686 ) build
105
-
106
84
kit_upload : # # Upload the built distributions to PyPI.
107
85
twine upload --verbose dist/*
108
86
@@ -118,8 +96,8 @@ kit_local:
118
96
# don't go crazy trying to figure out why our new code isn't installing.
119
97
find ~ /Library/Caches/pip/wheels -name ' coverage-*' -delete
120
98
121
- download_appveyor : # # Download the latest Windows artifacts from AppVeyor.
122
- python ci/download_appveyor .py nedbat/coveragepy
99
+ download_kits : # # Download the built kits from GitHub
100
+ python ci/download_gha_artifacts .py
123
101
124
102
build_ext :
125
103
python setup.py build_ext
0 commit comments