name long bash test command
This commit is contained in:
parent
11650bd1b5
commit
d425f62009
|
@ -49,7 +49,9 @@ jobs:
|
|||
mv consul ~/bin
|
||||
echo 'export PATH="~/bin:$PATH"'
|
||||
- run: mkdir -p $TEST_RESULTS_DIR
|
||||
- run: |
|
||||
- run:
|
||||
name: Run Go Tests
|
||||
command: |
|
||||
PACKAGE_NAMES=$(go list ./... | circleci tests split --split-by=timings --timings-type=classname)
|
||||
echo "Running $(echo $PACKAGE_NAMES | wc -w) packages"
|
||||
echo $PACKAGE_NAMES
|
||||
|
@ -76,7 +78,9 @@ jobs:
|
|||
- attach_workspace:
|
||||
at: .
|
||||
- run: mkdir -p $TEST_RESULTS_DIR
|
||||
- run: |
|
||||
- run:
|
||||
name: Run Go E2E Tests
|
||||
command: |
|
||||
PACKAGE_NAMES=$(go list ./... | circleci tests split --split-by=timings --timings-type=classname)
|
||||
echo "Running $(echo $PACKAGE_NAMES | wc -w) packages"
|
||||
echo $PACKAGE_NAMES
|
||||
|
|
Loading…
Reference in New Issue