diff --git a/.github/workflows/ci_pr.yml b/.github/workflows/ci_pr.yml index 11c066edda..410b5c9d4b 100644 --- a/.github/workflows/ci_pr.yml +++ b/.github/workflows/ci_pr.yml @@ -33,20 +33,9 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Install Python ${{ matrix.python-version }} + - name: History ${{ matrix.python-version }} run: | - apt-get update - apt-get install -y curl bzip2 sudo python3 - curl https://dcrdata.blob.core.windows.net/python/python-${{ matrix.python-version }}.tar.bz2 -o python-${{ matrix.python-version }}.tar.bz2 - sudo tar xjvf python-${{ matrix.python-version }}.tar.bz2 --directory / + history + - - name: Test with nosetests - run: | - if [[ ${{ matrix.python-version }} == "2.6" ]]; then - source /home/waagent/virtualenv/python2.6.9/bin/activate - else - source /home/waagent/virtualenv/python3.4.8/bin/activate - fi - ./ci/nosetests.sh - exit $? diff --git a/ci/nosetests.sh b/ci/nosetests.sh index 2dfe084737..5e160ab04d 100755 --- a/ci/nosetests.sh +++ b/ci/nosetests.sh @@ -7,6 +7,4 @@ EXIT_CODE=0 echo "=========================================" echo "=========================================" -history - exit 0