diff --git a/.github/actions/build-python/action.yml b/.github/actions/build-python/action.yml index ed543aff..2221fff1 100644 --- a/.github/actions/build-python/action.yml +++ b/.github/actions/build-python/action.yml @@ -54,12 +54,8 @@ runs: shell: bash env: GITHUB_TOKEN: ${{ inputs.github_ro_token }} - #- name: Create virtual environment - # run: python -m venv .venv - # shell: bash - name: Install python dependencies run: | - #source .venv/bin/activate pip install --upgrade pip setuptools wheel make develop shell: bash @@ -69,18 +65,15 @@ runs: - name: Linting if: inputs.run_lint == 'true' run: | - #source .venv/bin/activate make lint check-format shell: bash - name: Run tests if: inputs.run_test == 'true' run: | - #source .venv/bin/activate make test shell: bash - name: Build wheel if: inputs.run_build == 'true' run: | - #source .venv/bin/activate make build shell: bash diff --git a/.github/workflows/build-node-python.yml b/.github/workflows/build-node-python.yml index ab88e620..baaa04d6 100644 --- a/.github/workflows/build-node-python.yml +++ b/.github/workflows/build-node-python.yml @@ -375,7 +375,6 @@ jobs: shell: bash - name: Run playwright e2e tests run: | - #source .venv/bin/activate yarn run pw:run shell: bash - name: Upload playwright report