Skip to content

Commit

Permalink
nicfit.py cc update
Browse files Browse the repository at this point in the history
  • Loading branch information
nicfit committed Feb 18, 2018
1 parent 8891167 commit 9098853
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
src/test/data
src/test/eyeD3-test-data*
.idea
.idea/
.cookiecutter.md5
_misc/

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ pre-release: lint test changelog requirements
@echo "RELEASE_TAG: $(RELEASE_TAG)"
@echo "RELEASE_NAME: $(RELEASE_NAME)"
check-manifest
@if git tag -l | grep -x ${RELEASE_TAG} > /dev/null; then \
@if git tag -l | grep -E '^$(RELEASE_TAG)$$' > /dev/null; then \
echo "Version tag '${RELEASE_TAG}' already exists!"; \
false; \
fi
Expand Down
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
[tox]
envlist = clean, py27, pypy, py33, py34, py35, py36, pypy3, report
envlist = clean, py27, pypy, py33, py34, py35, py36, py37, pypy3, report

[testenv:clean]
commands = coverage erase

[testenv]
commands = coverage run --rcfile=setup.cfg --source ./src/eyed3 --append -m pytest {posargs:--verbose ./src/test}
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements/test.txt
py27,py33,pypy: -r{toxinidir}/requirements/test_py33.txt

commands =
coverage run --rcfile=setup.cfg --source ./src/eyed3 --append -m pytest ./src/test

[testenv:report]
commands =
Expand Down

0 comments on commit 9098853

Please sign in to comment.