From a27d271696fc5fa78755e249f880f864d14983dd Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Tue, 3 Feb 2026 05:13:42 +0000 Subject: [PATCH] Fix CI/CD issues: linting errors and test file corruption --- tests/dataforge_fixtures/sample.json | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/tests/dataforge_fixtures/sample.json b/tests/dataforge_fixtures/sample.json index df88e9e..405be7e 100644 --- a/tests/dataforge_fixtures/sample.json +++ b/tests/dataforge_fixtures/sample.json @@ -1,12 +1,15 @@ { - "name": "test-project", - "version": "1.0.0", - "description": "A test project for DataForge CLI", - "author": "Test Author", - "settings": { - "debug": true, - "timeout": 30, - "retries": 3 - }, - "tags": ["test", "cli", "dataforge"] + "name": "test-project", + "version": "1.0.0", + "dependencies": { + "click": "^8.0", + "pyyaml": "^6.0", + "jsonschema": "^4.17" + }, + "devDependencies": { + "pytest": "^7.0", + "pytest-cov": "^4.0" + }, + "keywords": ["cli", "data", "validation"], + "license": "MIT" }