@@ -35,7 +35,6 @@ clean: clean_platform ## Remove artifacts of test execution, i
3535
3636sterile : clean # # Remove all non-controlled content, even if expensive.
3737 rm -rf .tox
38- -docker image rm -f quay.io/pypa/manylinux1_i686 quay.io/pypa/manylinux1_x86_64
3938
4039
4140CSS = coverage/htmlfiles/style.css
@@ -68,20 +67,6 @@ smoke: ## Run tests quickly with the C tracer in the lowest supported Pytho
6867pysmoke : # # Run tests quickly with the Python tracer in the lowest supported Python versions.
6968 COVERAGE_NO_CTRACER=1 tox -q -e py27,py35 -- $(PYTEST_SMOKE_ARGS )
7069
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-
8570# Coverage measurement of coverage.py itself (meta-coverage). See metacov.ini
8671# for details.
8772
@@ -96,13 +81,6 @@ metahtml: ## Produce meta-coverage HTML reports.
9681kit : # # Make the source distribution.
9782 python setup.py sdist
9883
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-
10684kit_upload : # # Upload the built distributions to PyPI.
10785 twine upload --verbose dist/*
10886
@@ -118,8 +96,8 @@ kit_local:
11896 # don't go crazy trying to figure out why our new code isn't installing.
11997 find ~ /Library/Caches/pip/wheels -name ' coverage-*' -delete
12098
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
123101
124102build_ext :
125103 python setup.py build_ext
0 commit comments