diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..1be6a53 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "python.testing.pytestArgs": [ + "tests" + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true +} \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..77804e0 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,6 @@ +PyYAML>=6.0.1 +slack_bolt>=1.18.1 +solace_ai_connector>=0.1.1 +prettytable>=3.10.0 +pytest>=8.2.2 + diff --git a/tests/test_basic.py b/tests/test_basic.py new file mode 100644 index 0000000..c1a6d6c --- /dev/null +++ b/tests/test_basic.py @@ -0,0 +1,5 @@ +# Just add one passing test to test the CI/CD pipeline + + +def test_passing(): + assert True