summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/goamz/goamz/dynamodb/README.md
blob: 5896d67b698c68f10c7bb160ab6f72383a018339 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Running integration tests

## against DynamoDB local

To download and launch DynamoDB local:

```sh
$ make
```

To test:

```sh
$ go test -v -amazon
```

## against real DynamoDB server on us-east

_WARNING_: Some dangerous operations such as `DeleteTable` will be performed during the tests. Please be careful.

To test:

```sh
$ go test -v -amazon -local=false
```

_Note_: Running tests against real DynamoDB will take several minutes.