From 0ca5031392975e68da27053df2829f43e7403435 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Tue, 3 Feb 2026 05:13:47 +0000 Subject: [PATCH] Fix CI/CD issues: linting errors and test file corruption --- .travis.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) 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