From f2e7b3fdd7c103d8910020bc5b72279a80998b62 Mon Sep 17 00:00:00 2001 From: Jacob Pavlock Date: Tue, 7 Jul 2020 15:28:38 -0700 Subject: [PATCH] remove references to nose --- .coveragerc | 1 - .github/workflows/integration_test.yaml | 1 - appveyor.yml | 3 --- test/_common.py | 2 +- 4 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.coveragerc b/.coveragerc index 7d111e74c..bcc99c18f 100644 --- a/.coveragerc +++ b/.coveragerc @@ -2,7 +2,6 @@ omit = */pyshared/* */python?.?/* - */site-packages/nose/* */test/* exclude_lines = assert False diff --git a/.github/workflows/integration_test.yaml b/.github/workflows/integration_test.yaml index 9a4469e14..7d930bb72 100644 --- a/.github/workflows/integration_test.yaml +++ b/.github/workflows/integration_test.yaml @@ -8,7 +8,6 @@ jobs: strategy: python-version: 3.8 env: - NOSE_SHOW_SKIPPED: 1 PY_COLOR: 1 steps: - uses: actions/checkout@v2 diff --git a/appveyor.yml b/appveyor.yml index 00a3eb189..5a0f32135 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,9 +6,6 @@ skip_commits: message: /\[appveyor skip\]/ environment: - # Undocumented feature of nose-show-skipped. - NOSE_SHOW_SKIPPED: 1 - matrix: - PYTHON: C:\Python27 TOX_ENV: py27-test diff --git a/test/_common.py b/test/_common.py index 5412ab650..8e3b1dd18 100644 --- a/test/_common.py +++ b/test/_common.py @@ -44,7 +44,7 @@ beetsplug.__path__ = [os.path.abspath( RSRC = util.bytestring_path(os.path.join(os.path.dirname(__file__), 'rsrc')) PLUGINPATH = os.path.join(os.path.dirname(__file__), 'rsrc', 'beetsplug') -# Propagate to root logger so nosetest can capture it +# Propagate to root logger so the test runner can capture it log = logging.getLogger('beets') log.propagate = True log.setLevel(logging.DEBUG)