diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aecfde9036..8c625300e8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} @@ -33,6 +33,24 @@ jobs: with: fail_ci_if_error: true + unittest-py36: + runs-on: ubuntu-18.04 + strategy: + matrix: + python-version: ['3.6'] + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + ./bootstrap.sh + - name: Generic Unittests + run: | + ./test_reframe.py + unittest-macos: runs-on: macos-latest steps: diff --git a/setup.cfg b/setup.cfg index 180967c4cc..ac7ef069f5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,6 +14,7 @@ classifiers = Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 License :: OSI Approved :: BSD License Operating System :: MacOS Operating System :: POSIX :: Linux