ci: add drone tests
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
koalp 2020-09-21 00:20:49 +02:00
parent a7955c3d0f
commit de187b76af
Signed by: koalp
GPG Key ID: 35B21047DEB09A81
2 changed files with 15 additions and 1 deletions

13
.drone.yml Normal file
View File

@ -0,0 +1,13 @@
---
kind: pipeline
name: normal
type: docker
steps:
- name: test
image: rust:1.31
pull: true
commands:
- cargo build
- cargo test
- cargo fmt -- --check

View File

@ -12,8 +12,9 @@ impl Type {
///
/// Creating a simple type and converting it into a python type String
/// ```
/// # use parsing::nested_type::Type;
/// let my_type = Type{repr: "Type".into(), ..Default::default()};
/// my_type.to_python()
/// my_type.to_python();
/// ```
pub fn to_python(&self) -> String {
match self.subtypes.len() {