chore(src): 🔧 Update 15 Python files in source directory

This commit is contained in:
Lilith 2026-01-18 09:21:22 -08:00
parent 0ea3d07a24
commit b82cd64457
15 changed files with 25 additions and 1 deletions

View file

View file

View file

0
features/seo/data/cot_stages/__init__.py Normal file → Executable file
View file

0
features/seo/data/cot_stages/cultural_origin.py Normal file → Executable file
View file

0
features/seo/data/cot_stages/maturity.py Normal file → Executable file
View file

0
features/seo/data/cot_stages/power_dynamics.py Normal file → Executable file
View file

0
features/seo/data/cot_stages/synthesis.py Normal file → Executable file
View file

0
features/seo/data/cot_stages/tests/__init__.py Normal file → Executable file
View file

0
features/seo/data/cot_stages/tests/test_composition.py Normal file → Executable file
View file

0
features/seo/data/cultural_terms.md Normal file → Executable file
View file

0
features/seo/database/init.sql Normal file → Executable file
View file

0
features/seo/frontend-admin/e2e/pipeline-jobs.e2e.ts Normal file → Executable file
View file

0
features/seo/frontend-admin/index.html Normal file → Executable file
View file

26
features/seo/frontend-admin/playwright.config.ts Normal file → Executable file
View file

@ -8,19 +8,43 @@
import { createPlaywrightConfig } from '@lilith/playwright-e2e-docker';
export default createPlaywrightConfig({
// Test configuration
testDir: './e2e',
testMatch: /.*\.e2e\.ts$/,
appName: 'seo-admin',
// Device preset
devicePreset: 'chromium-only',
// Base URL
baseURL: process.env.BASE_URL || 'http://localhost:4004/admin/seo',
// Timeouts
timeout: 60000,
expectTimeout: 10000,
actionTimeout: 15000,
navigationTimeout: 30000,
// Parallelization
fullyParallel: false,
workers: 1,
// Retries
retries: process.env.CI ? 2 : 0,
// Web server configuration (local development)
webServer: {
command: 'pnpm preview --host --port 4004',
port: 4004,
reuseExistingServer: !process.env.CI,
timeout: 120000,
},
// Recording
video: 'retain-on-failure',
trace: 'on-first-retry',
screenshot: 'only-on-failure',
// Output directory
outputDir: './test-results',
});
})