Skip to content

Commit

Permalink
fix: Remove reliance on undeclared attrs dependency. (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanCardin committed Jan 19, 2023
1 parent d522be8 commit ac96d42
Show file tree
Hide file tree
Showing 5 changed files with 696 additions and 755 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ install:
## Test
test-base:
SQLALCHEMY_WARN_20=1 coverage run -a -m \
py.test src tests -vv \
pytest src tests -vv \
-m 'not postgres and not redshift and not mongo and not redis and not mysql and not moto'

test-parallel:
SQLALCHEMY_WARN_20=1 coverage run -m py.test -n 4 src tests -vv --pmr-multiprocess-safe
SQLALCHEMY_WARN_20=1 coverage run -m pytest -n 4 src tests -vv --pmr-multiprocess-safe

test: test-parallel
SQLALCHEMY_WARN_20=1 coverage run -a -m py.test src tests -vv
SQLALCHEMY_WARN_20=1 coverage run -a -m pytest src tests -vv
coverage report
coverage xml

Expand Down
Loading

0 comments on commit ac96d42

Please sign in to comment.