This is an automated email from the ASF dual-hosted git repository. yiconghuang pushed a commit to branch Yicong-Huang-patch-3 in repository https://gitbox.apache.org/repos/asf/texera.git
commit f1591202fd2889d0b00dc88fcc5f8e4ce9a96f21 Author: Yicong Huang <[email protected]> AuthorDate: Thu Aug 7 16:25:51 2025 -0700 chore(ci): remove R test from CI Signed-off-by: Yicong Huang <[email protected]> --- .github/workflows/github-action-build.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/github-action-build.yml b/.github/workflows/github-action-build.yml index c2196b84e6..f17743e8b7 100644 --- a/.github/workflows/github-action-build.yml +++ b/.github/workflows/github-action-build.yml @@ -110,15 +110,6 @@ jobs: steps: - name: Checkout Texera uses: actions/checkout@v2 - - name: Set up R for R-UDF - uses: r-lib/actions/setup-r@v2 - with: - r-version: '4.3.3' - - name: Install R dependencies - uses: r-lib/actions/setup-r-dependencies@v2 - with: - cache: false - working-directory: "./core/amber" - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: @@ -127,7 +118,6 @@ jobs: run: | python -m pip install --upgrade pip if [ -f core/amber/requirements.txt ]; then pip install -r core/amber/requirements.txt; fi - if [ -f core/amber/r-requirements.txt ]; then pip install -r core/amber/r-requirements.txt; fi if [ -f core/amber/operator-requirements.txt ]; then pip install -r core/amber/operator-requirements.txt; fi - name: Install PostgreSQL run: sudo apt-get update && sudo apt-get install -y postgresql @@ -141,4 +131,4 @@ jobs: cd core/amber/src/main/python && flake8 && black . --check - name: Test with pytest run: | - cd core/amber/src/main/python && pytest -sv \ No newline at end of file + cd core/amber/src/main/python && pytest -sv --ignore=core/models/test_RTableExecutor.py
