We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ddbe04 commit 3451af6Copy full SHA for 3451af6
.github/workflows/makefile.yml
@@ -89,17 +89,13 @@ jobs:
89
90
- name: Run tests
91
run: |
92
- # Set up virtual display for headless browser testing
93
- export DISPLAY=:99
94
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
95
-
96
# Wait a bit more for everything to be ready
97
sleep 3
98
99
# Run tests based on event type
100
if [ "${{ github.event_name }}" = "pull_request" ]; then
101
echo "Running PR tests (excluding modules)"
102
- npx mocha --grep modules --invert
+ npm run mocha -- --grep modules --invert
103
else
104
echo "Running all tests"
105
npm run mocha -- -g pyret-init
0 commit comments