File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 55
55
cd tests
56
56
./prepare_tests.js
57
57
export QT_DEBUG_PLUGINS=1
58
- ./test_hobbits.js ${{ github.workspace }}/build/bin/hobbits-runner -p ${{ github.workspace }}/build/plugins
58
+ ./test_hobbits.js " ${{ github.workspace }}/build/bin/hobbits-runner" -p " ${{ github.workspace }}/build/plugins"
59
59
cd ${{ github.workspace }}
60
60
61
61
- name : Package Build Artifacts
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env node
2
2
3
3
const { readdirSync, unlinkSync, existsSync } = require ( 'fs' )
4
- const { join } = require ( 'path' )
4
+ const { join, normalize } = require ( 'path' )
5
5
const { execFileSync } = require ( "child_process" ) ;
6
6
const glob = require ( 'glob' ) ;
7
7
const filecompare = require ( 'filecompare' ) ;
@@ -26,7 +26,7 @@ async function runTests() {
26
26
let failures = 0 ;
27
27
let successes = 0 ;
28
28
29
- let baseDir = join ( __dirname , 'extracted_tests' )
29
+ let baseDir = join ( normalize ( __dirname ) , 'extracted_tests' )
30
30
31
31
testDirs = readdirSync ( baseDir , { withFileTypes : true } )
32
32
. filter ( dirent => dirent . isDirectory ( ) )
You can’t perform that action at this time.
0 commit comments