Skip to content

Commit

Permalink
Merge pull request #207 from pph-collective/develop
Browse files Browse the repository at this point in the history
v3.0.0
  • Loading branch information
s-bessey authored Dec 22, 2021
2 parents 01cfa7a + eee1937 commit 0ad0245
Show file tree
Hide file tree
Showing 46 changed files with 1,096 additions and 749 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Python for linting, formatting, type checking
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: '3.6'
- name: Set up Poetry for linting, formatting, type checking
run: |
pip install poetry
Expand All @@ -21,7 +21,7 @@ jobs:
uses: actions/cache@v2
with:
path: .venv
key: venv-lint-python3.7-${{ hashFiles('**/poetry.lock') }}
key: venv-lint-python3.6-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: poetry install -E linting --no-dev
- name: Lint with flake8
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Set up Python for testing
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: '3.6'
- name: Set up Poetry for testing
run: |
pip install poetry
Expand All @@ -52,7 +52,7 @@ jobs:
uses: actions/cache@v2
with:
path: .venv
key: venv-python3.8-${{ hashFiles('**/poetry.lock') }}
key: venv-python3.6-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: poetry install
- name: Unit Test with pytest
Expand All @@ -71,7 +71,7 @@ jobs:
- name: Set up Python for testing
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: '3.6'
- name: Set up Poetry for testing
run: |
pip install poetry
Expand All @@ -80,7 +80,7 @@ jobs:
uses: actions/cache@v2
with:
path: .venv
key: venv-python3.8-${{ hashFiles('**/poetry.lock') }}
key: venv-python3.6-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: poetry install
- name: Integration Test with pytest
Expand All @@ -99,7 +99,7 @@ jobs:
- name: Set up Python for testing
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: '3.6'
- name: Set up Poetry for testing
run: |
pip install poetry
Expand All @@ -108,7 +108,7 @@ jobs:
uses: actions/cache@v2
with:
path: .venv
key: venv-python3.8-${{ hashFiles('**/poetry.lock') }}
key: venv-python3.10-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: poetry install
- name: Integration Test with pytest
Expand All @@ -133,7 +133,7 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python for testing
- name: Set up pypy for testing
uses: actions/setup-python@v2
with:
python-version: pypy-3.6
Expand Down
1 change: 0 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ plugins:
heading_level: 3
watch:
- titan
- run_titan.py

markdown_extensions:
- admonition
Expand Down
Loading

0 comments on commit 0ad0245

Please sign in to comment.