From c95f58101c4d14384fe3ff0b1cacf997a3721760 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Tue, 3 Feb 2026 04:17:04 +0000 Subject: [PATCH] Initial upload: DataForge CLI with full documentation and tests --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0e8743b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: python +python: + - "3.8" + - "3.9" + - "3.10" + - "3.11" + - "3.12" +install: + - pip install -e ".[dev] +script: + - pytest -v + - pytest --cov=dataforge +notifications: + email: false