From 18d878bc0c88730598c6a7b33c875504e63321d4 Mon Sep 17 00:00:00 2001 From: Igor Shatunov Date: Thu, 19 Jan 2023 23:45:27 +0200 Subject: [PATCH] Push repo --- pyproject.toml | 6 ++++++ requirements.txt | 3 +-- test.py | 7 +++++++ 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 pyproject.toml create mode 100644 test.py diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..2a41ee8 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,6 @@ +[tool.pytest.ini_options] +minversion = "6.0" +addopts = "-ra -q" +testpaths = [ + "test.py", +] \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 32453dd..35b4560 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1 @@ -hvac -pytest \ No newline at end of file +hvac \ No newline at end of file diff --git a/test.py b/test.py new file mode 100644 index 0000000..e82eec8 --- /dev/null +++ b/test.py @@ -0,0 +1,7 @@ +import unittest + +class Testing(unittest.TestCase): + def test_string(self): + a = 'some' + b = 'some' + self.assertEqual(a, b) \ No newline at end of file