From 12108e2889d57c208dbc176c7c7997d4eee68498 Mon Sep 17 00:00:00 2001 From: Timon Pike Date: Wed, 1 Nov 2023 14:32:33 -0700 Subject: [PATCH] revert changes to unit test workflow --- .github/workflows/unit_tests.yml | 10 ---------- sdk/python/pytest.ini | 4 +--- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index ec6e614c87..9971139e0b 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -20,16 +20,6 @@ jobs: OS: ${{ matrix.os }} PYTHON: ${{ matrix.python-version }} steps: - - name: Increase swapfile - # Increase ubuntu's swapfile to avoid running out of resources which causes the action to terminate - if: startsWith(matrix.os, 'ubuntu') - run: | - sudo swapoff -a - sudo fallocate -l 15G /swapfile - sudo chmod 600 /swapfile - sudo mkswap /swapfile - sudo swapon /swapfile - sudo swapon --show - uses: actions/checkout@v2 - name: Setup Python id: setup-python diff --git a/sdk/python/pytest.ini b/sdk/python/pytest.ini index aa610eadb0..07a5e869dc 100644 --- a/sdk/python/pytest.ini +++ b/sdk/python/pytest.ini @@ -1,6 +1,4 @@ [pytest] markers = universal_offline_stores: mark a test as using all offline stores. - universal_online_stores: mark a test as using all online stores. -env = - TC_MAX_TRIES=300 \ No newline at end of file + universal_online_stores: mark a test as using all online stores. \ No newline at end of file