From 8c8ab9771943ba1479e3b2fa2548b51f5f59e5c5 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Wed, 3 Dec 2025 17:05:53 +0100 Subject: [PATCH] Remove Travis CI and AppVeyor config --- .coveragerc | 1 - .travis.yml | 21 --------------------- appveyor.yml | 47 ----------------------------------------------- av-tox.ini | 19 ------------------- 4 files changed, 88 deletions(-) delete mode 100644 .travis.yml delete mode 100644 appveyor.yml delete mode 100644 av-tox.ini diff --git a/.coveragerc b/.coveragerc index 1ddb957..90d0661 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,7 +1,6 @@ [run] branch = True omit = - /home/travis/virtualenv/* /opt/python/* [report] diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b7bc393..0000000 --- a/.travis.yml +++ /dev/null @@ -1,21 +0,0 @@ -dist: xenial -language: python -sudo: false -python: -# - "2.6" removed because tests aren't 2.6-compatible - - "2.7" -# - "3.2" removed because Coveralls/coverage 4.0 fails on 3.2 -# - "3.3" removed because fails on Travis with Xenial - - "3.4" - - "3.5" - - "3.6" - - "3.7" - - "3.8" - - "pypy2.7-6.0" - - "pypy3.5-6.0" -install: - - pip install coveralls -script: - - "NO_EXTERNAL_TESTS=1 python test_gnupg.py --no-doctests" - - "NO_EXTERNAL_TESTS=1 coverage run test_gnupg.py --no-doctests" -after_success: coveralls diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 80951fc..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,47 +0,0 @@ -version: 1.0.{build} -image: - - Visual Studio 2017 - - ubuntu1804 - - macos - - macos-mojave -environment: - NO_EXTERNAL_TESTS: 1 - matrix: - - TOXENV: py27 -# - TOXENV: py34 - - TOXENV: py35 - - TOXENV: py36 - - TOXENV: py37 - - TOXENV: py38 -# - TOXENV: py39 - -for: -- - matrix: - only: - - image: Visual Studio 2017 - - install: - - ps: | - $path = [Environment]::GetEnvironmentVariable("path", "machine") - $origPath = $path - $newPath = ($path.Split(';') | Where-Object { $_ -eq 'C:\ProgramData\chocolatey\bin' }) -join ';' - [Environment]::SetEnvironmentVariable("path", $newPath, "machine") - refreshenv - appveyor-retry choco install gnupg - $newPath = "C:\Program Files (x86)\GnuPG\bin;" + $origPath - [Environment]::SetEnvironmentVariable("path", $newPath, "machine") - refreshenv - Write-Host $newPath - cmd /r "C:\Program Files (x86)\GnuPG\bin\gpg.exe" --version - - - cmd: pip install tox - -install: -- cmd: pip install tox -build: off -test_script: -- cmd: tox -c av-tox.ini -on_failure: -- cmd: type test_gnupg.log - diff --git a/av-tox.ini b/av-tox.ini deleted file mode 100644 index c87a838..0000000 --- a/av-tox.ini +++ /dev/null @@ -1,19 +0,0 @@ -[tox] -#envlist = py26, py27, py34, py35, py36, pypy -envlist = py26, py27, py35, py36, py37, py38, py39, pypy -isolated_build = True - -[testenv] -commands = {envpython} test_gnupg.py - -# -# AppVeyor has a rogue copy of gpg2.2.19 lying around, which messes things up unless -# the gpg binary we want is specified with the correct absolute path. The location -# below is the default location of the executable installed by "choco install gnupg". -# -setenv = - NO_EXTERNAL_TESTS=1 - GPGBINARY=C:\Program Files (x86)\GnuPG\bin\gpg.exe - -deps = -