Skip to content

Commit

Permalink
Merge pull request #3 from SolaceDev:add_simple_tests
Browse files Browse the repository at this point in the history
chore: Added a simple passing test to allow CI/CD to work
  • Loading branch information
efunneko authored Jul 10, 2024
2 parents 3e6f212 + e32a51c commit 7bc3590
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}
6 changes: 6 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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

5 changes: 5 additions & 0 deletions tests/test_basic.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Just add one passing test to test the CI/CD pipeline


def test_passing():
assert True

0 comments on commit 7bc3590

Please sign in to comment.