You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This directory contains GitHub Actions workflows that automatically run tests for the osmosis-wrap package.
4
+
5
+
## Workflows
6
+
7
+
### test.yml
8
+
9
+
This workflow runs on:
10
+
- Every push to the main branch
11
+
- Every pull request to the main branch
12
+
13
+
It performs the following steps:
14
+
1. Sets up Python environments (3.8, 3.9, 3.10)
15
+
2. Installs the required dependencies
16
+
3. Runs the pytest tests in test.py
17
+
18
+
The workflow validates that the osmosis-wrap functionality works correctly with various LLM API clients including:
19
+
- Anthropic
20
+
- OpenAI
21
+
- LangChain
22
+
23
+
## Test Skip Behavior
24
+
25
+
Some tests are conditionally skipped if the corresponding packages are not installed. This allows the test suite to run even if optional dependencies are not present.
0 commit comments