Skip to content

Commit 3679226

Browse files
authored
fix: unit testing and linting (#55)
* fix: poetry.lock dependencies * fix(tests): namespace of imported brick * fix(CircleCI): run tests on build
1 parent b65147b commit 3679226

File tree

5 files changed

+334
-97
lines changed

5 files changed

+334
-97
lines changed

.circleci/config.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ orbs:
33
python: circleci/[email protected]
44

55
jobs:
6-
lint:
6+
test:
77
executor:
88
name: python/default
99
tag: "3.8"
@@ -16,9 +16,10 @@ jobs:
1616
python --version
1717
poetry run flake8
1818
poetry run mypy .
19-
name: Linting
19+
poetry run pytest
20+
name: Linting and testing
2021

2122
workflows:
2223
main:
2324
jobs:
24-
- lint
25+
- test

0 commit comments

Comments
 (0)