Skip to content

Commit

Permalink
don't do go get -u in travis, do go mod download instead
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Picciano committed Oct 18, 2019
1 parent 60fc5e5 commit d3d16ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ before_script:
- ./testdata/dectest/generate.bash
- ./testdata/pytables/generate.bash
- GO_FILES=$(find . -type f -iname '*.go')
- go get -u -t ./...
- go mod download

script:
- test -z $(gofmt -s -l $GO_FILES)
Expand Down
2 changes: 1 addition & 1 deletion testdata/pytables/tables.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3.6
#!/usr/bin/env python3

from decimal import *
import gzip
Expand Down

0 comments on commit d3d16ca

Please sign in to comment.