Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ authors = [
edition = "2024"
license = "MIT OR Apache-2.0"
rust-version = "1.85.0"
version = "0.39.2"
version = "0.39.3"

[workspace.dependencies]
mooc-langs-api = { git = "https://github.com/rage/secret-project-331.git", rev = "24179d597e5f4120649be50b903a9a4e544ea77c" }
Expand Down
5 changes: 2 additions & 3 deletions crates/tmc-langs-cli/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,7 @@ pub enum Command {
#[clap(long)]
output_path: PathBuf,
/// If given, the tests will be copied from this stub instead, effectively ignoring hidden tests.
// alias for backwards compatibility
#[clap(long, alias = "stub-zip-path")]
#[clap(long)]
stub_archive_path: Option<PathBuf>,
/// Compression algorithm used for the stub archive.
#[clap(long, default_value_t = Compression::Zip)]
Expand Down Expand Up @@ -836,7 +835,7 @@ mod base_test {
"tar",
"--output-path",
"path",
"--stub-zip-path",
"--stub-archive-path",
"path",
"--submission-path",
"path",
Expand Down
3 changes: 3 additions & 0 deletions crates/tmc-langs-framework/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ mod plugin;
mod policy;
mod tmc_project_yml;

#[cfg(test)]
mod test_helpers;

pub use self::{
archive::{Archive, ArchiveBuilder, Compression},
command::{ExitStatus, Output, TmcCommand},
Expand Down
Loading