Skip to content

Commit

Permalink
add simapp tests for contracts (#157)
Browse files Browse the repository at this point in the history
* initial setup

* fix payload

* add fair burn tests for minter

* buy collection test

* add whitelist test

* remove commented code

* Apply suggestions from code review

Co-authored-by: shane.stars <[email protected]>

* Apply suggestions from code review

Co-authored-by: shane.stars <[email protected]>

* Apply suggestions from code review

Co-authored-by: shane.stars <[email protected]>

* add drone yml

* update drone

* add test

* remove unused file

Co-authored-by: shane.stars <[email protected]>
  • Loading branch information
jhernandezb and shanev authored Mar 9, 2022
1 parent b4b774b commit c0cfaac
Show file tree
Hide file tree
Showing 5 changed files with 2,310 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
kind: pipeline
type: docker
name: default-build

platform:
os: linux
arch: amd64

workspace:
path: /code

steps:
- name: build-contracts
image: cosmwasm/workspace-optimizer:0.12.5
- name: full_test
image: publicawesome/golang:1.17.7-devtooling
commands:
- mkdir -p e2e/contracts
- cp artifacts/*.wasm e2e/contracts/
- cd e2e/
- go test . -v
volumes:
- name: cache
temp: {}

node:
runner: integration

trigger:
branch:
- main
event:
- pull_request
- push
1 change: 1 addition & 0 deletions e2e/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
contracts/
Loading

0 comments on commit c0cfaac

Please sign in to comment.