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