diff --git a/.gitignore b/.gitignore index 669760d..6f0f1ea 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,5 @@ dist #pypi .pypirc + +*.ignore diff --git a/pytest.ini b/pytest.ini index 9283cfe..6b94fca 100644 --- a/pytest.ini +++ b/pytest.ini @@ -16,4 +16,5 @@ addopts = markers = API: tests of server api functions whether it is exposed as REST API or otherwise UNIT: Unit tests + FUNC: Functional tests REGRESSION: tests for previous bugs diff --git a/pytest_minio_mock/__init__.py b/pytest_minio_mock/__init__.py index fd76f4d..2a6c7ab 100644 --- a/pytest_minio_mock/__init__.py +++ b/pytest_minio_mock/__init__.py @@ -17,10 +17,10 @@ __title__ = "pytest-minio-mock" __description__ = "A pytest plugin for mocking Minio S3 interactions" -__version__ = "0.2.11" +__version__ = "0.3.13" __status__ = "Production" __license__ = "MIT" __author__ = "Oussama Jarrousse" __maintainer__ = "Oussama Jarrousse" __email__ = "oussama@jarrousse.org" -__credits__ = ["Gustavo Satheler", "@cottephi"] \ No newline at end of file +__credits__ = ["Gustavo Satheler", "@cottephi"] diff --git a/setup.py b/setup.py index 2f03011..e0bdf2a 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ long_description=open("README.md").read(), keywords="pytest minio mock", extras_require={"dev": ["pre-commit", "tox"]}, - version="0.2.11", + version="0.3.13", long_description_content_type="text/markdown", classifiers=[ "Framework :: Pytest",