forked from cberner/raptorq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
37 lines (35 loc) · 903 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
matrix:
fast_finish: true
include:
- name: Run tests
language: rust
rust: stable
install:
[]
before_script:
- cargo install cargo-lichking
- rustup component add rustfmt
- rustup component add clippy
script:
- make test
- name: Run CPython wrapper linter
language: rust
rust: stable
install:
[]
before_script:
- cargo install cargo-lichking
- rustup component add rustfmt
script:
- make -C python lint
- name: Run CPython wrapper tests
language: rust
rust: nightly
install:
[]
before_script:
- sudo apt update && sudo apt install python3 python3-pip python3-dev
- pip3 install virtualenv maturin
- python3 -m virtualenv venv
script:
- source venv/bin/activate && make -C python test