Skip to content

Commit

Permalink
ci 🤖: fix python script
Browse files Browse the repository at this point in the history
missing commas :facepalm
  • Loading branch information
melMass committed Feb 1, 2024
1 parent 39759ae commit 1202d40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/compare_screenshots.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def run_playwright_tests(before_commit, after_commit):
commands = [
"cp tests/teia.screenshots.spec.ts tests/teia.screenshots.head",
f"git checkout {before_commit}",
"cp tests/teia.screenshots.head tests/teia.screenshots.spec.ts"
"cp tests/teia.screenshots.head tests/teia.screenshots.spec.ts",
"sudo apt update",
"npm ci --maxsockets 1",
"npx playwright install chromium --with-deps",
Expand All @@ -35,7 +35,7 @@ def run_playwright_tests(before_commit, after_commit):

commands = [
f"git checkout {after_commit}",
"cp tests/teia.screenshots.head tests/teia.screenshots.spec.ts"
"cp tests/teia.screenshots.head tests/teia.screenshots.spec.ts",
"npm ci --maxsockets 1",
"npx playwright install chromium --with-deps", # yes strange but after the reinstall this is needed again
"npx playwright test --project chromium",
Expand Down

0 comments on commit 1202d40

Please sign in to comment.