From fe81916a05a54cb0e69519d3e8047acca334ff8c Mon Sep 17 00:00:00 2001 From: Alek Petuskey Date: Wed, 4 Jan 2023 22:01:25 -0800 Subject: [PATCH] Fix integration test (#211) --- .github/workflows/integration.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 917acd471..e9e53d4df 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -35,8 +35,8 @@ jobs: - name: Clone Pynecone Website Repo uses: actions/checkout@v3 with: - repository: pynecone-io/pynecone-website - path: pynecone-website + repository: pynecone-io/pcweb + path: pcweb # Install poetry - name: cache poetry install @@ -63,11 +63,11 @@ jobs: run: poetry install --no-interaction --no-root if: steps.cache-deps.outputs.cache-hit != 'true' - name: Install Requirements - working-directory: ./pynecone-website/pcweb + working-directory: ./pcweb run: poetry run pip install -r requirements.txt - name: Init Website - working-directory: ./pynecone-website/pcweb + working-directory: ./pcweb/pcweb run: poetry run pc init - name: Run Website - working-directory: ./pynecone-website/pcweb + working-directory: ./pcweb/pcweb run: timeout 1m poetry run pc run || exit 0 \ No newline at end of file