[go: up one dir, main page]

ci_info 0.13.0

Provides current CI environment information.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(test)]
extern crate test;

use ci_info;
use test::Bencher;

#[bench]
fn is_ci(bencher: &mut Bencher) {
    bencher.iter(|| {
        ci_info::is_ci();
    });
}