Skip to content

Commit

Permalink
fix version binding for pytest-testslide, tweak makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
deathowl committed Jan 7, 2021
1 parent 30f29c8 commit f031616
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ pytest_tests: export PYTHONPATH=${CURDIR}/pytest-testslide:${CURDIR}
pytest_tests: FORCE coverage_erase
@printf "${TERM_BRIGHT}INSTALL pytest_testslide DEPS ${TERM_NONE}\n"
${Q} pip install -r pytest-testslide/requirements.txt
@printf "${TERM_BRIGHT}PYTEST pytest_testslide${TERM_NONE}"
@printf "${TERM_BRIGHT}PYTEST pytest_testslide${TERM_NONE}\n"
${Q} coverage run \
-m pytest \
pytest-testslide/tests
Expand Down
4 changes: 1 addition & 3 deletions pytest-testslide/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@

dir_path = os.path.dirname(os.path.realpath(__file__))

ts_version = (
open(os.path.join(dir_path, os.pardir, "testslide_version")).read().rstrip()
)
ts_version = open("testslide-version").read().rstrip()
requirements = open("requirements.txt", encoding="utf8").readlines()

with open("README.md", encoding="utf8") as f:
Expand Down
2 changes: 1 addition & 1 deletion pytest-testslide/testslide-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.4
2.6.3

0 comments on commit f031616

Please sign in to comment.