Skip to content

Commit

Permalink
Release 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Marvmann authored Dec 6, 2024
2 parents 3357fce + 75b286f commit 11dab47
Show file tree
Hide file tree
Showing 130 changed files with 8,904 additions and 3,929 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9.16'
python-version: '3.12.7'
token: ${{ secrets.QUARK_GH_GITHUB_COM_TOKEN }}

- name: Install pylint and autopep8
Expand Down
15 changes: 11 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [ 'main', 'dev' ]

jobs:
lint:
test:
name: Run Unit Tests
runs-on: [ 'ubuntu-latest' ]
env:
Expand All @@ -25,15 +25,22 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9.16'
python-version: '3.12.7'
cache: 'pip' # caching pip dependencies
cache-dependency-path: '**/requirements_full.txt'
token: ${{ secrets.QUARK_GH_GITHUB_COM_TOKEN }}

- name: Install Dependencies
run: pip install -r .settings/requirements_full.txt

- name: Run tests with unittest
run: python -m unittest discover .
- name: Run Unit Tests
run: python -m unittest discover . > unittest_results.log

- name: Upload Test Logs
if: always()
uses: actions/upload-artifact@v3
with:
name: unittest-logs
path: unittest_results.log


2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.9"
python: "3.12"

# Build documentation in the docs/ directory with Sphinx
sphinx:
Expand Down
Loading

0 comments on commit 11dab47

Please sign in to comment.