summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/go-testfixtures/testfixtures/v3/Taskfile.yml
blob: a4ae1c899e65d4e4369d6431756aa87e60d41fb6 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# https://taskfile.org

version: '2'

tasks:
  build:
    cmds:
      - go build -v -tags sqlite -o ./testfixtures{{exeExt}} ./cmd/testfixtures

  test-cli:
    cmds:
      - ./testfixtures -d sqlite -c testdb.sqlite3 -D testdata/fixtures

  test:pg:
    desc: Test PostgreSQL
    cmds:
      - task: test-db
        vars: {DATABASE: postgresql}

  test:mysql:
    desc: Test MySQL
    cmds:
      - task: test:db
        vars: {DATABASE: mysql}

  test:sqlite:
    desc: Test SQLite
    cmds:
      - task: test-db
        vars: {DATABASE: sqlite}

  test:sqlserver:
    desc: Test SQLServer
    cmds:
      - task: test-db
        vars: {DATABASE: sqlserver}

  test-db:
    cmds:
      - go test -v -tags {{.DATABASE}}

  goreleaser:test:
    desc: Tests release process without publishing
    cmds:
      - goreleaser --snapshot --rm-dist

  docker:
    cmds:
      - task: docker:build
      - task: docker:test

  docker:build:
    cmds:
      - docker build -t testfixtures .

  docker:test:
    cmds:
      - docker-compose down -v
      - docker-compose run testfixtures go test -v -tags 'postgresql sqlite mysql sqlserver'