Skip to content

Commit

Permalink
return to normal mode from debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
slobentanzer committed Nov 13, 2023
1 parent fd21c89 commit 3ae3335
Showing 1 changed file with 20 additions and 25 deletions.
45 changes: 20 additions & 25 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,27 @@ jobs:
with:
python-version: 3.11

# - name: Install Docker
# run: |
# sudo apt remove containerd.io
# sudo apt install -y docker.io
- name: Install Docker
run: |
sudo apt remove containerd.io
sudo apt install -y docker.io
# - name: Install Docker Compose
# run: |
# sudo curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
# sudo chmod +x /usr/local/bin/docker-compose
- name: Install Docker Compose
run: |
sudo curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
# - name: Install Poetry
# run: |
# curl -sSL https://install.python-poetry.org | python3 -
# - name: Install dependencies
# run: |
# poetry install
# poetry install -E podcast
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry install
poetry install -E podcast
# - name: Start Milvus server
# run: |
# docker-compose -f milvus-docker-compose.yml up -d
- name: Start Milvus server
run: |
docker-compose -f milvus-docker-compose.yml up -d
- name: Set API key
run: |
Expand All @@ -55,11 +55,6 @@ jobs:
echo "AZURE_TEST_OPENAI_API_BASE=$(cat azure_test_api_base.txt)" >> $GITHUB_ENV
echo "AZURE_TEST_OPENAI_API_KEY=$(cat azure_test_api_key.txt)" >> $GITHUB_ENV
- name: Debug API key
- name: Run tests
run: |
cat api_key.txt
echo $OPENAI_API_KEY
# - name: Run tests
# run: |
# poetry run pytest --ignore=./volumes
poetry run pytest --ignore=./volumes

0 comments on commit 3ae3335

Please sign in to comment.