Skip to content

Commit aaa9d0b

Browse files
committed
Fixing pyo3 with tarpaulin part 2
1 parent d3e8f7a commit aaa9d0b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
- name: Run coverage
8989
if: runner.os == 'Linux'
9090
run: |
91-
cargo tarpaulin --features "extension-module" --out Xml --timeout 200
91+
cargo tarpaulin --no-default-features --out Xml --timeout 200
9292
9393
- name: Upload coverage reports to Codecov
9494
if: runner.os == 'Linux'

crates/pymwemu/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ name = "pymwemu"
1010
crate-type = ["cdylib", "rlib"]
1111

1212
[dependencies.pyo3]
13-
version = "0.26"
13+
version = "0.26.0"
1414

1515
[features]
1616
extension-module = ["pyo3/extension-module"]
17-
default = ["extension-module"] # default
17+
default = ["extension-module"]
1818

1919
[dependencies]
2020
env_logger = "0.11.6"

0 commit comments

Comments
 (0)