From 9ab415fff212b97f7764a0dd952eec41f7239ee4 Mon Sep 17 00:00:00 2001 From: Fern Support <126544928+fern-support@users.noreply.github.com> Date: Wed, 18 Dec 2024 10:08:08 -0500 Subject: [PATCH] chore: run integration tests as part of `test` --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 53fc39c..8332970 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,6 +35,11 @@ jobs: - name: Test run: poetry run pytest -rP tests/custom + + - name: Integration Tests + env: + VECTARA_API_KEY: ${{ secrets.VECTARA_API_KEY }} + run: poetry run pytest -rP int_tests publish: needs: [compile, test]