diff --git a/.travis.yml b/.travis.yml index 0e8743b..b0ed6e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,10 +5,15 @@ python: - "3.10" - "3.11" - "3.12" + install: - - pip install -e ".[dev] + - pip install -e ".[dev]" + script: - pytest -v - - pytest --cov=dataforge -notifications: - email: false + - ruff check . + - black --check . + - mypy dataforge/ --ignore-missing-imports + +after_success: + - coveralls