134c129edc
* Add failing test * Complete formatting * Fix commands execution * Fix commands execution for Linux * Extract virtual environment creation/removing into separate functions * Complete error messages * Complete examples building * Use 'venv' independent path * Call script by dotted path instead of 'source' call * Add Travis CI script * Rename variable: 'exec_prefix' -> 'base_prefix' * Add AppVeyor script * Remove Rust test * Complete shell script mode * Complete path to powershell script * Use 'pushd'/'popd' instead of 'cd' * Complete powershell script * Complete shell script * Fix setup * Use 'tox-venv' plugin for 'venv' stdlib module support * Remove additional 'venv' testing * Use global environment instead of calling 'set' * Use 'tox' for AppVeyor, extract commands into 'setup' & 'test' scripts * Add updating of 'pip' & 'setuptools' * Add moving in/back from examples directories * Complete 'pip'/'setuptools' updating * Complete requirements * Complete 'word-count' example configuration * Simplify 'setup' script * Complete 'rustapi_module' example tests * Revert formatting * Complete examples configuration * Remove redundant annotations * Add entry in changelog
23 lines
446 B
PowerShell
23 lines
446 B
PowerShell
Set-PSDebug -trace 2
|
|
|
|
function Invoke-Call
|
|
{
|
|
param ([scriptblock]$ScriptBlock)
|
|
& @ScriptBlock
|
|
if ($LastExitCode -ne 0)
|
|
{
|
|
exit $LastExitCode
|
|
}
|
|
}
|
|
|
|
Invoke-Call { cargo test --verbose }
|
|
|
|
$examplesDirectory = "examples"
|
|
|
|
foreach ($example in Get-ChildItem $examplesDirectory)
|
|
{
|
|
Push-Location $( Join-Path $examplesDirectory $example )
|
|
Invoke-Call { tox -c "tox.ini" -e py }
|
|
Pop-Location
|
|
}
|