mirror of
https://github.com/retailcrm/api-client-go.git
synced 2025-04-12 21:40:58 +00:00
13 lines
334 B
Bash
Executable file
13 lines
334 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
export DEVELOPER_NODE=1
|
|
export RETAILCRM_URL=https://test.retailcrm.pro
|
|
export RETAILCRM_KEY=key
|
|
touch coverage.txt
|
|
|
|
go test ./errs/ -race -coverprofile=errs.out -covermode=atomic "$d"
|
|
go test ./v5/ -race -coverprofile=v5.out -covermode=atomic "$d"
|
|
|
|
cat errs.out >> coverage.txt
|
|
cat v5.out >> coverage.txt
|