Integration Test #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
pull_request_review: | |
types: [submitted] | |
jobs: | |
test: | |
if: github.event.review.state == 'approved' | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Setup secrets file | |
shell: bash | |
env: | |
OPEN_AI_API_KEY: "${{ secrets.OPEN_AI_API_KEY }}" | |
run: | | |
mkdir -p src/.steamship/; echo -e "openai_api_key =" "\"""$OPEN_AI_API_KEY""\"" > src/.steamship/secrets.toml | |
# Setup Python (faster than using Python container) | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.8.x" | |
- name: Install Virtualenv | |
run: | | |
python3 -m venv .venv | |
- name: Activate Virtualenv | |
run: | | |
source .venv/bin/activate | |
- name: Install Dependencies | |
run: | | |
python -m pip install -r requirements.txt | |
- name: Install Development Dependencies | |
run: | | |
python -m pip install -r requirements.dev.txt | |
- name: Run integration tests | |
env: | |
STEAMSHIP_API_KEY: ${{ secrets.STEAMSHIP_STAGING_TEST_KEY }} | |
STEAMSHIP_API_BASE: ${{ secrets.STEAMSHIP_STAGING_TEST_API_BASE }} | |
STEAMSHIP_APP_BASE: ${{ secrets.STEAMSHIP_STAGING_TEST_APP_BASE }} | |
run: | | |
pytest test/test_integration.py |