mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 06:20:08 +01:00
testing updates
This commit is contained in:
parent
1a13715567
commit
9176bd1090
4 changed files with 6 additions and 4 deletions
|
|
@ -15,4 +15,4 @@ ADD makefile.extra.make makefile.extra.make
|
||||||
|
|
||||||
ENV PYTHONPATH="src/:vendor/"
|
ENV PYTHONPATH="src/:vendor/"
|
||||||
|
|
||||||
CMD make serve
|
CMD make test_compat
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ PACKAGE_NAME := pycalver
|
||||||
# - `make ipy`
|
# - `make ipy`
|
||||||
# - `make lint`
|
# - `make lint`
|
||||||
# - `make devtest`
|
# - `make devtest`
|
||||||
DEVELOPMENT_PYTHON_VERSION := python=3.6
|
DEVELOPMENT_PYTHON_VERSION := python=3.7
|
||||||
|
|
||||||
# These must be valid (space separated) conda package names.
|
# These must be valid (space separated) conda package names.
|
||||||
# A separate conda environment will be created for each of these.
|
# A separate conda environment will be created for each of these.
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,6 @@ test_compat: $(COMPAT_TEST_FILES)
|
||||||
for i in $${!env_pys[@]}; do \
|
for i in $${!env_pys[@]}; do \
|
||||||
env_py=$${env_pys[i]}; \
|
env_py=$${env_pys[i]}; \
|
||||||
$${env_py} -m pip install --upgrade build/test_wheel/*.whl; \
|
$${env_py} -m pip install --upgrade build/test_wheel/*.whl; \
|
||||||
PYTHONPATH="" ENV=$${ENV-dev} \
|
ENABLE_BACKTRACE=0 PYTHONPATH="" ENV=$${ENV-dev} \
|
||||||
$${env_py} -m pytest --verbose compat_test/; \
|
$${env_py} -m pytest --verbose compat_test/ -k novcs_bump; \
|
||||||
done;
|
done;
|
||||||
|
|
|
||||||
|
|
@ -372,6 +372,7 @@ def test_novcs_bump(runner):
|
||||||
with pl.Path("README.md").open() as fh:
|
with pl.Path("README.md").open() as fh:
|
||||||
content = fh.read()
|
content = fh.read()
|
||||||
assert calver + ".0002-alpha !\n" in content
|
assert calver + ".0002-alpha !\n" in content
|
||||||
|
assert calver[1:] + ".2a0 !\n" in content
|
||||||
|
|
||||||
result = runner.invoke(pycalver.cli, ['bump', "--verbose", "--release", "beta"])
|
result = runner.invoke(pycalver.cli, ['bump', "--verbose", "--release", "beta"])
|
||||||
assert result.exit_code == 0
|
assert result.exit_code == 0
|
||||||
|
|
@ -379,6 +380,7 @@ def test_novcs_bump(runner):
|
||||||
with pl.Path("README.md").open() as fh:
|
with pl.Path("README.md").open() as fh:
|
||||||
content = fh.read()
|
content = fh.read()
|
||||||
assert calver + ".0003-beta !\n" in content
|
assert calver + ".0003-beta !\n" in content
|
||||||
|
assert calver[1:] + ".3b0 !\n" in content
|
||||||
|
|
||||||
|
|
||||||
def test_git_bump(runner):
|
def test_git_bump(runner):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue