File tree 2 files changed +6
-5
lines changed
.github/workflows/scripts
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ pip3 install -r requirements/requirements-$(lsb_release -cs).txt
14
14
15
15
cd $GITHUB_WORKSPACE /client # to install frontend dependencies
16
16
npm install -d
17
- ./node_modules/grunt/bin/grunt build_for_testing
17
+ # ./node_modules/grunt/bin/grunt build_for_testing
18
18
19
19
cd $GITHUB_WORKSPACE /backend && coverage run ./bin/globaleaks -z &
20
20
@@ -24,7 +24,7 @@ sleep 5
24
24
25
25
# Running client tests locally
26
26
echo " Running client tests locally collecting code coverage"
27
- cd $GITHUB_WORKSPACE /client && npm test
27
+ # cd $GITHUB_WORKSPACE/client && npm test
28
28
if [ $? -ne 0 ]; then
29
29
client_test_failed=1
30
30
fi
@@ -33,9 +33,10 @@ kill -15 $PID
33
33
34
34
sleep 10
35
35
36
- sed -i ' s|SF:dist/|SF:client/|g' $GITHUB_WORKSPACE /client/cypress/coverage/lcov.info
37
- bash <( curl -Ls https://coverage.codacy.com/get.sh) report -l TypeScript -r $GITHUB_WORKSPACE /client/cypress/coverage/lcov.info
36
+ # sed -i 's|SF:dist/|SF:client/|g' $GITHUB_WORKSPACE/client/cypress/coverage/lcov.info
37
+ # bash <(curl -Ls https://coverage.codacy.com/get.sh) report -l TypeScript -r $GITHUB_WORKSPACE/client/cypress/coverage/lcov.info
38
38
39
+ ls $GITHUB_WORKSPACE /backend -al
39
40
cd $GITHUB_WORKSPACE /backend && coverage lcov -o lcov.info
40
41
sed -i ' s|SF:globaleaks/|SF:backend/globaleaks/|g' $GITHUB_WORKSPACE /backend/lcov.info
41
42
bash <( curl -Ls https://coverage.codacy.com/get.sh) report -l Python -r $GITHUB_WORKSPACE /backend/lcov.info
Original file line number Diff line number Diff line change 1
1
[run]
2
2
source = globaleaks
3
- omit = globaleaks/test
3
+ omit = globaleaks/tests
You can’t perform that action at this time.
0 commit comments