mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 09:45:50 +02:00
Update CI (#4445)
* Add different features combinations * Specify styles manually * Fix args * Fix typo * Let other CI jobs finish if one fails * Fix unused symbols without plugin feature * Put "which" tests behind "which" feature * Add Python virtualenv job * Oops forgot git command * Install Nushell in virtualenv tests * Add names to steps; Test v.env in separate step * cd into virtualenv * Do not run on Python 2.7 * Build Nushell after formatting and clippy checks
This commit is contained in:
@ -5,10 +5,12 @@ use nu_protocol::engine::{EngineState, Stack, StateDelta, StateWorkingSet};
|
||||
use std::path::PathBuf;
|
||||
|
||||
const NUSHELL_FOLDER: &str = "nushell";
|
||||
const PLUGIN_FILE: &str = "plugin.nu";
|
||||
const CONFIG_FILE: &str = "config.nu";
|
||||
const HISTORY_FILE: &str = "history.txt";
|
||||
#[cfg(feature = "plugin")]
|
||||
const PLUGIN_FILE: &str = "plugin.nu";
|
||||
|
||||
#[cfg(feature = "plugin")]
|
||||
pub(crate) fn read_plugin_file(engine_state: &mut EngineState, stack: &mut Stack) {
|
||||
// Reading signatures from signature file
|
||||
// The plugin.nu file stores the parsed signature collected from each registered plugin
|
||||
|
Reference in New Issue
Block a user