File tree Expand file tree Collapse file tree 4 files changed +3
-6
lines changed Expand file tree Collapse file tree 4 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 2828 run : sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libglfw3-dev libwayland-dev libsdl2-dev
2929 - name : Clone latest GLFW3
3030 run : git clone https://github.com/glfw/glfw; cd glfw; mkdir build; cd build; cmake ..; make -j$(nproc); sudo make install; cd ../..;
31- - name : Run doc tests with all features (this also compiles README examples)
32- run : cargo test --doc --all-features
31+ - name : Run doc tests (this also compiles README examples)
32+ run : cargo test --doc
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ license = "Zlib"
77readme = " ../README.md"
88repository = " https://github.com/raylib-rs/raylib-rs"
99
10-
1110[dependencies ]
1211raylib = { version = " 5.5.0" , path = " ../raylib" }
12+ raylib_sys = { version = " 5.5.0" , path = " ../raylib-sys" }
1313lazy_static = " 1.2.0"
1414colored = " 2.1.0"
1515
Original file line number Diff line number Diff line change @@ -148,6 +148,4 @@ pub mod callback_tests {
148148 . unwrap ( ) ;
149149 }
150150 }
151-
152- pub fn set_file_text_loader ( _: & RaylibThread ) { }
153151}
Original file line number Diff line number Diff line change @@ -91,7 +91,6 @@ pub fn test_runner(tests: &[&dyn Testable]) {
9191 callbacks:: callback_tests:: set_file_data_saver ( & thread) ;
9292 callbacks:: callback_tests:: set_file_text_saver ( & thread) ;
9393 callbacks:: callback_tests:: set_file_data_loader ( & thread) ;
94- callbacks:: callback_tests:: set_file_text_loader ( & thread) ;
9594
9695 let args = std:: env:: args ( ) . collect :: < Vec < _ > > ( ) ;
9796 let opts = match parse_opts ( & args) {
You can’t perform that action at this time.
0 commit comments