Skip to content

Commit

Permalink
Merge pull request #11 from bethinkpl/python-3.9
Browse files Browse the repository at this point in the history
LACE-626 | Try to run tests using Python 3.9
  • Loading branch information
macbre committed Mar 5, 2021
2 parents be09421 + 2a842d4 commit 31fb6ee
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:

strategy:
matrix:
python-version: [3.8]
python-version:
- "3.8"
- "3.9"

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions src/pythink_toolbox/testing/parametrization.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import pytest


# pylint:disable=too-few-public-methods
class Scenario(TypedDict):
"""Default scenario for parametrization.
Examples:
Expand Down
7 changes: 4 additions & 3 deletions tests/test_testing/test_paramatrization.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# pylint: disable=missing-class-docstring
# pylint: disable=missing-function-docstring
# pylint: disable=protected-access
# pylint:disable=missing-class-docstring
# pylint:disable=missing-function-docstring
# pylint:disable=protected-access
# pylint:disable=too-few-public-methods
import typing

import pythink_toolbox.testing.parametrization as tested_module
Expand Down
5 changes: 3 additions & 2 deletions tests/test_validating.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# pylint: disable=missing-class-docstring
# pylint: disable=missing-function-docstring
# pylint:disable=missing-class-docstring
# pylint:disable=missing-function-docstring
# pylint:disable=too-few-public-methods
from typing import Any, Type, Callable, List, Optional

import pandera # type: ignore[import]
Expand Down

0 comments on commit 31fb6ee

Please sign in to comment.