fix toggle in unit tests #48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration Tests | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install atftp | |
run: | | |
sudo apt-get update | |
sudo apt-get install atftp | |
- name: Build | |
run: cargo build --features client --verbose | |
- name: Run tests | |
run: cargo test --test integration_test --features integration --verbose -- --test-threads 1 |