1234567891011121314151617181920212223 |
- #!/bin/bash
- #
- set -e
- set -o pipefail
- set -x
- source `dirname $0`/stackenv
- # Run the acceptance tests.
- # exec go test -p=1 devel.mephi.ru/iacherepanov/openstack-gophercloud/acceptance/... $@
- # Only enable these successful test cases
- go test -v -tags "fixtures acceptance" ./acceptance/openstack/identity/v3/
- go test -v -tags "fixtures acceptance" ./acceptance/openstack/networking/v2/
- go test -v -tags "fixtures acceptance" ./acceptance/openstack/blockstorage/v2/
- go test -v -tags "fixtures acceptance" -run "SecGroup|Flavor|Keypair" ./acceptance/openstack/compute/v2/
- go test -v -tags "fixtures acceptance" ./acceptance/openstack/container/v1/
- # To enable more after the fix of https://devel.mephi.ru/iacherepanov/openstack-gophercloud/issues/818
- # go test -v -tags "fixtures acceptance" ./acceptance/openstack/imageservice/v2/
- # go test -v -tags "fixtures acceptance" ./acceptance/openstack/identity/v2/
- # go test -v -tags "fixtures acceptance" ./acceptance/openstack/compute/v2/
|