Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix: Add Create mypy pkg in CI
  • Loading branch information
Breno Fernandes (Mac OS) committed Jun 30, 2022
commit a37d1366f234d67750ee0dabca63669fef0cb9ab
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
- name: Install project dependencies
run: poetry install -vvv --no-root

- name: Create MyPy Package File
run: poetry run poe create_mypy_pkg_file

- name: Run MyPy Against Source Code
run: poetry run poe run_mypy_src

Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ script = "scripts.test:test_all(clean_cache)"
options = ["-c", "--clean_cache"]
default = false

[tool.poe.tasks.create_mypy_pkg_file]
help = "CI Test | Create mypy package file"
script = "scripts.test.procedures:create_mypy_pkg_file"

[tool.poe.tasks.run_mypy_src]
help = "CI Test | Run mypy against source code"
script = "scripts.test.procedures:run_mypy_src"
Expand Down