File: README.md

package info (click to toggle)
golang-github-adroll-goamz 0.0~git20170225.0.c5d7d9b-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,520 kB
  • ctags: 2,498
  • sloc: makefile: 41
file content (27 lines) | stat: -rw-r--r-- 441 bytes parent folder | download | duplicates (3)
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.