From 62f078eaecd78815a54408dce4f42d01a907a5cf Mon Sep 17 00:00:00 2001 From: Edwin Eefting Date: Tue, 29 Aug 2023 15:39:54 +0200 Subject: [PATCH] github ubuntu doesnt support testing python2 anymore --- .github/workflows/regression.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index e7c557d..b5be76b 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -46,29 +46,3 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: coveralls --service=github || true - ubuntu20_python2: - runs-on: ubuntu-20.04 - - steps: - - name: Checkout - uses: actions/checkout@v3.5.0 - - - name: Set up Python 2.x - uses: actions/setup-python@v2 - with: - python-version: '2.x' - - - name: Prepare - run: sudo apt update && sudo apt install zfsutils-linux lzop pigz zstd gzip xz-utils lz4 mbuffer && sudo -H pip3 install coverage unittest2 mock==3.0.5 coveralls - - - - name: Regression test - run: sudo -E ./tests/run_tests - - - - name: Coveralls - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: coveralls --service=github || true - -