Skip to content

Commit 085907b

Browse files
test: updating ci to include vocr tests.
1 parent f5b73b2 commit 085907b

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ jobs:
4848
- test_web.py
4949
- test_deep_research.py
5050
- test_ai_scrape.py
51+
- test_vocr.py
5152
steps:
5253
- uses: actions/checkout@v4
5354

tests/test_vocr.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,8 @@
1313
logging.basicConfig(level=logging.INFO)
1414
logger = logging.getLogger(__name__)
1515

16-
jigsaw = jigsawstack.JigsawStack(
17-
api_url="http://localhost:3000/api/", api_key=os.getenv("JIGSAWSTACK_API_KEY")
18-
)
19-
async_jigsaw = jigsawstack.AsyncJigsawStack(
20-
api_url="http://localhost:3000/api/", api_key=os.getenv("JIGSAWSTACK_API_KEY")
21-
)
16+
jigsaw = jigsawstack.JigsawStack(api_key=os.getenv("JIGSAWSTACK_API_KEY"))
17+
async_jigsaw = jigsawstack.AsyncJigsawStack(api_key=os.getenv("JIGSAWSTACK_API_KEY"))
2218

2319
IMAGE_URL = "https://jigsawstack.com/preview/vocr-example.jpg"
2420

0 commit comments

Comments
 (0)