summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-05-05 09:53:17 -0400
committerNed Batchelder <ned@nedbatchelder.com>2018-05-05 09:53:17 -0400
commit03d1185afa318ca045180b3b942be67c808feef4 (patch)
tree2525a4392be345e520f7e1ff069df61b4980216e
parent3fa2a487b977b6b8fb49d5c79c64d423cd1a9706 (diff)
downloadpython-coveragepy-03d1185afa318ca045180b3b942be67c808feef4.tar.gz
Remove CI things we aren't using
-rw-r--r--circle.yml18
-rw-r--r--tox-new.ini53
2 files changed, 0 insertions, 71 deletions
diff --git a/circle.yml b/circle.yml
deleted file mode 100644
index a52959e..0000000
--- a/circle.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-# Circle CI configuration for coverage.py.
-# https://circleci.com/gh/nedbat/coveragepy
-
-machine:
- python:
- version: 2.7.6
- post:
- - pyenv global pypy-2.4.0 2.6.8 2.7.9 3.3.3 3.4.2
-
-dependencies:
- pre:
- - pip install -U pip
- override:
- - pip install -r requirements/tox.pip
-
-test:
- override:
- - tox
diff --git a/tox-new.ini b/tox-new.ini
deleted file mode 100644
index bc5f041..0000000
--- a/tox-new.ini
+++ /dev/null
@@ -1,53 +0,0 @@
-# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
-# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
-
-# An experiment in using tox to install the sdist, and do the pytracer/ctracer
-# split. Doesn't yet work because the working tree is in the import path, so
-# "import coverage" finds the working tree instead of the sdist-installed code.
-# This can be fixed one of two ways:
-#
-# 1. By changing to a "src" layout, so that "import coverage" won't work in the
-# working tree, or
-#
-# 2. By removing the "__init__.py" from the tests directory, so that nose won't
-# add the working tree to the path. This will also mean changing a number of
-# import statements in the tests directory.
-
-[tox]
-envlist = py{26,27,33,34,35}-{c,py}tracer, pypy{24,26,3_24}-pytracer
-skip_missing_interpreters = True
-
-[testenv]
-commands =
- # Create tests/zipmods.zip, install the egg1 egg
- python igor.py zip_mods install_egg
-
- # Remove the C extension so that we can test the PyTracer
- pytracer: python igor.py remove_extension
- pytracer: python igor.py test_with_tracer py {posargs}
-
- ctracer: python igor.py test_with_tracer c {posargs}
-
-deps =
- # https://requires.io/github/nedbat/coveragepy/requirements/
- nose==1.3.7
- mock==1.3.0
- PyContracts==1.7.6
- py26: unittest2==1.1.0
- py{26,27}: gevent==1.0.2
- py{26,27}: eventlet==0.17.4
- py{26,27,33,34,35}: greenlet==0.4.9
-
-passenv = COVERAGE_*
-
-[testenv:pypy]
-basepython = pypy
-
-[testenv:pypy24]
-basepython = pypy2.4
-
-[testenv:pypy26]
-basepython = pypy2.6
-
-[testenv:pypy3_24]
-basepython = pypy3-2.4