From 1ef43ee248fcdad7739ed7a8096a5671c7446bc5 Mon Sep 17 00:00:00 2001 From: Tolu Aina <7848930+toluaina@users.noreply.github.com> Date: Fri, 19 Feb 2021 23:10:10 +0100 Subject: [PATCH] bump version number --- pgsync/__init__.py | 2 +- setup.cfg | 2 +- tests/test_env_vars.py | 10 ++++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 tests/test_env_vars.py diff --git a/pgsync/__init__.py b/pgsync/__init__.py index adaf9a10..2e4adae8 100644 --- a/pgsync/__init__.py +++ b/pgsync/__init__.py @@ -4,4 +4,4 @@ __author__ = 'Tolu Aina' __email__ = 'toluaina@hotmail.com' -__version__ = '1.1.26' +__version__ = '1.1.27' diff --git a/setup.cfg b/setup.cfg index 9eab2808..86ec05df 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.26 +current_version = 1.1.27 commit = True tag = True diff --git a/tests/test_env_vars.py b/tests/test_env_vars.py new file mode 100644 index 00000000..d45d851e --- /dev/null +++ b/tests/test_env_vars.py @@ -0,0 +1,10 @@ +"""Env vars tests.""" +import pytest + + +@pytest.mark.usefixtures('table_creator') +class TestEnvVars(object): + """Env vars tests.""" + + def test_env_vars(self): + pass