remove references to nose

This commit is contained in:
Jacob Pavlock 2020-07-07 15:28:38 -07:00
parent d5e5be5c8e
commit f2e7b3fdd7
4 changed files with 1 additions and 6 deletions

View file

@ -2,7 +2,6 @@
omit = omit =
*/pyshared/* */pyshared/*
*/python?.?/* */python?.?/*
*/site-packages/nose/*
*/test/* */test/*
exclude_lines = exclude_lines =
assert False assert False

View file

@ -8,7 +8,6 @@ jobs:
strategy: strategy:
python-version: 3.8 python-version: 3.8
env: env:
NOSE_SHOW_SKIPPED: 1
PY_COLOR: 1 PY_COLOR: 1
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2

View file

@ -6,9 +6,6 @@ skip_commits:
message: /\[appveyor skip\]/ message: /\[appveyor skip\]/
environment: environment:
# Undocumented feature of nose-show-skipped.
NOSE_SHOW_SKIPPED: 1
matrix: matrix:
- PYTHON: C:\Python27 - PYTHON: C:\Python27
TOX_ENV: py27-test TOX_ENV: py27-test

View file

@ -44,7 +44,7 @@ beetsplug.__path__ = [os.path.abspath(
RSRC = util.bytestring_path(os.path.join(os.path.dirname(__file__), 'rsrc')) RSRC = util.bytestring_path(os.path.join(os.path.dirname(__file__), 'rsrc'))
PLUGINPATH = os.path.join(os.path.dirname(__file__), 'rsrc', 'beetsplug') 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 = logging.getLogger('beets')
log.propagate = True log.propagate = True
log.setLevel(logging.DEBUG) log.setLevel(logging.DEBUG)