Merge pull request #401 from zed-industries/fail-ci-on-warnings

Cause tests to fail on CI when there are warnings
This commit is contained in:
Nathan Sobo
2022-02-04 10:14:05 -07:00
committed by GitHub
2 changed files with 4 additions and 1 deletions

View File

@@ -19,6 +19,8 @@ jobs:
tests:
name: Run tests
runs-on: self-hosted
env:
RUSTFLAGS: -D warnings
steps:
- name: Install Rust
uses: actions-rs/toolchain@v1

View File

@@ -1,7 +1,6 @@
use anyhow::{anyhow, Result};
use fsevent::EventStream;
use futures::{Stream, StreamExt};
use postage::prelude::Sink as _;
use smol::io::{AsyncReadExt, AsyncWriteExt};
use std::{
io,
@@ -164,6 +163,8 @@ impl FakeFsState {
}
async fn emit_event(&mut self, paths: &[&Path]) {
use postage::prelude::Sink as _;
let events = paths
.iter()
.map(|path| fsevent::Event {