Skip to content

Commit 0ef9c77

Browse files
committed
simplify dev scripts
1 parent 2ef8c33 commit 0ef9c77

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Diff for: .github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
TEST_MYSQL_PASS: testbench
3434
TEST_MYSQL_PORT: ${{ job.services.mysql.ports['3306'] }}
3535
- name: move coverage
36-
run: tree $(pwd)/coverage && mv $(pwd)/coverage/tests.sh/cov.xml $(pwd)/cov.xml
36+
run: ls -lahR ./ && mv ./coverage/tests.sh/cov.xml ./cov.xml
3737
- name: Send coverage
3838
uses: codecov/codecov-action@v1
3939
with:

Diff for: postTest.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#!/bin/bash
1+
#!/bin/sh
22

33
echo "$(date --utc --rfc-2822)" > "$(dirname $0)/test/endfile"

Diff for: run-tests.sh

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/sh
22

3+
set -e
4+
35
apk add --update --no-cache mysql-client
46

57
./tests.sh

0 commit comments

Comments
 (0)