Skip to content

Commit 0c0beca

Browse files
authored
Merge pull request #186 from Rust-Data-Science/wip-na-behaviors
Wip na behaviors
2 parents 987d3a1 + 5683a9e commit 0c0beca

File tree

18 files changed

+2284
-327
lines changed

18 files changed

+2284
-327
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ jobs:
3333
- name: Install Python packages
3434
run: |
3535
pip install -r ./requirements/dev.txt
36-
- name: Cargo clippy
37-
run: |
38-
cd ulist
39-
cargo clippy
4036
- name: Build ulist
4137
run: |
4238
maturin build --out dist -m ulist/Cargo.toml

tests/run.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
EXIT_STATUS=0
22

3+
echo "Running clippy..."
4+
cargo clippy --manifest-path ../ulist/Cargo.toml -- -D warnings|| EXIT_STATUS=$?
5+
echo "\n"
6+
37
echo "Running unit tests..."
48
pytest ../tests|| EXIT_STATUS=$?
59
echo "\n"

tests/test_base.py

Lines changed: 981 additions & 131 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)