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 e2d2a9a commit dd3a31eCopy full SHA for dd3a31e
.github/workflows/test.yml
@@ -8,5 +8,5 @@ jobs:
8
steps:
9
- name: Checkout repository
10
uses: actions/checkout@v2
11
- - name: Test
12
- run: ./test.sh
+ - name: Run CLI tests
+ run: cd test; ./run.sh cli
test/_setup.sh renamed to test/cli/_setup.sh
@@ -1,4 +1,4 @@
1
-export PATH=$(dirname "$0")/../src:$PATH
+export PATH=$(cd $(dirname "$0"); pwd)/../../src:$PATH
2
3
export test_tempdir="/tmp/lifecap-tests-$$"
4
mkdir -p "$test_tempdir"
test/_teardown.sh renamed to test/cli/_teardown.sh
test/cli/topic/test_add_topic.sh
0 commit comments