Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
Bump Python SDK and Pytest to the latest version (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts authored Jan 2, 2020
1 parent a289d7c commit 26a72ea
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 27 deletions.
4 changes: 2 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pip = "*"
pre-commit = "*"
pycodestyle = "*"
pylint = "*"
pytest= "<5.1"
pytest= "*"
pytest-cov="*"
python-dotenv = "*"
setuptools = "*"
Expand All @@ -21,7 +21,7 @@ sphinx = "*"


[packages]
isogeo-pysdk = ">=3.2.5,<3.3"
isogeo-pysdk = ">=3.2.5,<3.4"
openpyxl = "==3.0.*"

[requires]
Expand Down
43 changes: 22 additions & 21 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ stages:
- script: |
python -m black --target-version=py37 ./$(packageFolderName)
python -m black --target-version=py37 .\tests
python -m black --target-version=py37 ./tests
displayName: 'Apply black code formatting'
- script: |
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ setuptools
wheel

# required
isogeo-pysdk>=3.2.5,<3.3
isogeo-pysdk>=3.2.5,<3.4
openpyxl==3.0.*

# development
black
flake8
pre-commit
pylint
pytest==5.0.*
pytest
pytest-cov
python-dotenv
sphinx
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ description-file = README.md

[tool:pytest]
addopts = --junitxml=junit/test-results.xml --cov-config=.coveragerc --cov=isogeotoxlsx --cov-report=xml --cov-report=html --cov-append tests/ --ignore=tests/_wip/
junit_family = xunit2
minversion = 3.2
norecursedirs = .* build dev development dist docs CVS fixtures _darcs {arch} *.egg venv _wip
testpaths = tests
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"Source": "https://github.com/isogeo/export-xlsx-py/",
},
# dependencies
install_requires=["isogeo-pysdk>=3.2.5,<3.3", "openpyxl==3.0.*"],
install_requires=["isogeo-pysdk>=3.2.5,<3.4", "openpyxl==3.0.*"],
extras_require={
"dev": ["black", "python-dotenv"],
"test": ["codecov", "coverage", "pytest", "pytest-cov"],
Expand Down

0 comments on commit 26a72ea

Please sign in to comment.