Skip to content

Commit a9f7b51

Browse files
authored
Merge pull request #219 from rage/server-fixes
Server fixes
2 parents 078d0e2 + dfc8c8a commit a9f7b51

File tree

8 files changed

+715
-162
lines changed

8 files changed

+715
-162
lines changed

Cargo.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ authors = [
2222
edition = "2024"
2323
license = "MIT OR Apache-2.0"
2424
rust-version = "1.85.0"
25-
version = "0.39.2"
25+
version = "0.39.3"
2626

2727
[workspace.dependencies]
2828
mooc-langs-api = { git = "https://github.com/rage/secret-project-331.git", rev = "24179d597e5f4120649be50b903a9a4e544ea77c" }

crates/tmc-langs-cli/src/app.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,7 @@ pub enum Command {
182182
#[clap(long)]
183183
output_path: PathBuf,
184184
/// If given, the tests will be copied from this stub instead, effectively ignoring hidden tests.
185-
// alias for backwards compatibility
186-
#[clap(long, alias = "stub-zip-path")]
185+
#[clap(long)]
187186
stub_archive_path: Option<PathBuf>,
188187
/// Compression algorithm used for the stub archive.
189188
#[clap(long, default_value_t = Compression::Zip)]
@@ -836,7 +835,7 @@ mod base_test {
836835
"tar",
837836
"--output-path",
838837
"path",
839-
"--stub-zip-path",
838+
"--stub-archive-path",
840839
"path",
841840
"--submission-path",
842841
"path",

crates/tmc-langs-framework/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ mod plugin;
1111
mod policy;
1212
mod tmc_project_yml;
1313

14+
#[cfg(test)]
15+
mod test_helpers;
16+
1417
pub use self::{
1518
archive::{Archive, ArchiveBuilder, Compression},
1619
command::{ExitStatus, Output, TmcCommand},

0 commit comments

Comments
 (0)