Skip to content

Commit

Permalink
Fix Python test script command in CI workflow
Browse files Browse the repository at this point in the history
Updated the command to run Python tests within the CI workflow from 'npm test:python' to 'npm run test:python'. This ensures the correct execution of the Python test script.
  • Loading branch information
SquirrelDevelopper committed Oct 15, 2024
1 parent 12a54fe commit e3bdb73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ jobs:
run: npm test
- name: Test Python
working-directory: ./server
run: npm test:python
run: npm run test:python

0 comments on commit e3bdb73

Please sign in to comment.