Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

integration tests #121

Merged
merged 21 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 0 additions & 42 deletions .github/workflows/lint_examples.sh

This file was deleted.

14 changes: 4 additions & 10 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,20 +79,14 @@ jobs:
shell: bash
run: bash .github/workflows/lint.sh

- name: Test
shell: bash
run: COMPONENTIZE_PY_TEST_COUNT=20 PROPTEST_MAX_SHRINK_ITERS=0 cargo test --release

- uses: taiki-e/install-action@v2
with:
tool: wasmtime-cli

- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install wasmtime mypy
- name: Test examples
shell: bash
run: bash .github/workflows/test_examples.sh
- name: Lint examples

- name: Test
shell: bash
run: bash .github/workflows/lint_examples.sh
run: COMPONENTIZE_PY_TEST_COUNT=20 PROPTEST_MAX_SHRINK_ITERS=0 cargo test --release
37 changes: 0 additions & 37 deletions .github/workflows/test_examples.sh

This file was deleted.

99 changes: 99 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,11 @@ toml = "0.8.19"
semver = "1.0.23"

[dev-dependencies]
proptest = "1.5.0"
assert_cmd = "2.0.16"
fs_extra = "1.3.0"
hex = "0.4.3"
predicates = "3.1.2"
proptest = "1.5.0"
tempfile = "3.13.0"

[build-dependencies]
Expand Down
Loading