@@ -85,25 +85,25 @@ jobs:
85
85
run : echo LD_LIBRARY_PATH=${pythonLocation}/lib >> $GITHUB_ENV
86
86
87
87
- name : Build docs
88
- run : cargo doc --features "num-bigint num-complex" --verbose --target ${{ matrix.platform.rust-target }}
88
+ run : cargo doc --features "num-bigint num-complex" --verbose
89
89
90
90
- name : Build without default features
91
- run : cargo build --no-default-features --verbose --target ${{ matrix.platform.rust-target }}
91
+ run : cargo build --no-default-features --verbose
92
92
93
93
- name : Build with default features
94
- run : cargo build --features "num-bigint num-complex" --verbose --target ${{ matrix.platform.rust-target }}
94
+ run : cargo build --features "num-bigint num-complex" --verbose
95
95
96
96
# Run tests (except on PyPy, because no embedding API).
97
97
- if : matrix.python-version != 'pypy-3.6'
98
98
name : Test
99
- run : cargo test --features "num-bigint num-complex" --target ${{ matrix.platform.rust-target }}
99
+ run : cargo test --features "num-bigint num-complex"
100
100
# Run tests again, but in abi3 mode
101
101
- if : matrix.python-version != 'pypy-3.6'
102
102
name : Test (abi3)
103
- run : cargo test --no-default-features --features "abi3,macros" --target ${{ matrix.platform.rust-target }}
103
+ run : cargo test --no-default-features --features "abi3,macros"
104
104
105
105
- name : Test proc-macro code
106
- run : cargo test --manifest-path=pyo3-macros-backend/Cargo.toml --target ${{ matrix.platform.rust-target }}
106
+ run : cargo test --manifest-path=pyo3-macros-backend/Cargo.toml
107
107
108
108
- name : Install python test dependencies
109
109
run : |
@@ -118,6 +118,7 @@ jobs:
118
118
done
119
119
120
120
env :
121
+ CARGO_BUILD_TARGET : ${{ matrix.platform.rust-target }}
121
122
RUST_BACKTRACE : 1
122
123
123
124
coverage :
0 commit comments