Compare commits

..

1 Commits

Author SHA1 Message Date
af629695a5 further speed up tests by not loading drop charts by default
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
2023-11-11 18:17:18 -07:00
2 changed files with 3 additions and 22 deletions

View File

@ -9,31 +9,16 @@ concurrency:
steps:
- name: build
image: rustlang/rust:nightly
volumes:
- name: cache
path: /usr/local/cargo
- name: target-cache
path: /drone/src/target
commands:
- cargo build
- name: clippy!
image: rustlang/rust:nightly
volumes:
- name: cache
path: /usr/local/cargo
- name: target-cache
path: /drone/src/target
commands:
- cargo clippy -- --deny warnings
- name: test
image: rustlang/rust:nightly
volumes:
- name: cache
path: /usr/local/cargo
- name: target-cache
path: /drone/src/target
commands:
- cargo test
- cargo test --jobs 1
volumes:
- name: cache

View File

@ -3,14 +3,10 @@
use networking::serverstate::{ClientId, ServerState};
use entity::gateway::EntityGateway;
use entity::account::{UserAccountEntity, NewUserAccountEntity, NewUserSettingsEntity};
use entity::character::{CharacterEntity, NewCharacterEntity, SectionID};
use entity::character::{CharacterEntity, NewCharacterEntity};
use entity::item::{Meseta, BankIdentifier};
use elseware::ship::ship::{ShipServerState, RecvShipPacket};
use maps::room::{Difficulty, Episode};
use drops::{DropTable, ItemDropType};
use maps::area::MapArea;
use maps::monster::MonsterType;
use maps::object::MapObject;
use maps::room::Difficulty;
use entity::item;