-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Anthony Ruhier
committed
May 7, 2018
1 parent
45bf212
commit b3afdae
Showing
2 changed files
with
10 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,18 @@ | ||
[bumpversion] | ||
current_version = 1.0.0 | ||
current_version = 1.0.1 | ||
commit = True | ||
tag = True | ||
tag_name={new_version} | ||
tag_name = {new_version} | ||
|
||
[bumpversion:file:setup.py] | ||
search = version="{current_version}" | ||
replace = version="{new_version}" | ||
|
||
[aliases] | ||
test=pytest | ||
# verbose mode | ||
testv=pytest --addopts "-v --duration=10" | ||
# test debug, with pdb | ||
testd=pytest --addopts "--pdb" | ||
# last failed | ||
testlf=pytest --addopts "--lf" | ||
# coverage related tests | ||
testcov=pytest --addopts "--cov netboxapi --cov-config .coveragerc" | ||
testcoveralls=pytest --addopts "--cov netboxapi --cov-report=" | ||
test = pytest | ||
testv = pytest --addopts "-v --duration=10" | ||
testd = pytest --addopts "--pdb" | ||
testlf = pytest --addopts "--lf" | ||
testcov = pytest --addopts "--cov netboxapi --cov-config .coveragerc" | ||
testcoveralls = pytest --addopts "--cov netboxapi --cov-report=" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
|
||
setup( | ||
name="netboxapi", | ||
version="1.0.0", | ||
version="1.0.1", | ||
|
||
description="Client API for Netbox", | ||
|
||
|