Skip to content

Commit 0ed6669

Browse files
CI: temporarily remove in-repo Python tests
These tests don't really behave as expected: the code is built using the in-repo python-build-standalone 3.12 interpreter (set by `python.defaultinterpreter`) but is executed under the Python interpreter provided by the runner (also 3.12 on `ubuntu-latest`). We'll shortly begin work on a .pex preamble format that will allow the use of the python-build-standalone interpreter at both build and run time, at which point this test can be readded.
1 parent aee808c commit 0ed6669

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

.github/workflows/plugin.yaml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -43,22 +43,8 @@ jobs:
4343
with:
4444
name: logs-${{ matrix.python-version }}-please_pex-${{ matrix.pex-tool }}
4545
path: plz-out/log
46-
test_in_repo_python:
47-
name: Test (Python 3.12 in repo)
48-
runs-on: ubuntu-latest
49-
steps:
50-
- name: Checkout code
51-
uses: actions/checkout@v5
52-
- name: Run tests
53-
run: ./pleasew test --profile in_repo_python
54-
- name: Archive logs
55-
if: always()
56-
uses: actions/upload-artifact@v4
57-
with:
58-
name: logs-in-repo-python
59-
path: plz-out/log
6046
release:
61-
needs: [test, test_in_repo_python]
47+
needs: [test]
6248
runs-on: ubuntu-latest
6349
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/v1'
6450
steps:

0 commit comments

Comments
 (0)