Skip to content

Commit

Permalink
Merge pull request #13988 from nvaccess/beta
Browse files Browse the repository at this point in the history
Merge beta to master
  • Loading branch information
seanbudd committed Aug 5, 2022
2 parents 462365a + 2e1ffba commit 8b4c462
Show file tree
Hide file tree
Showing 45 changed files with 5,880 additions and 3,125 deletions.
9 changes: 8 additions & 1 deletion appveyor/scripts/tests/systemTests.ps1
@@ -1,6 +1,13 @@
$testOutput = (Resolve-Path .\testOutput\)
$systemTestOutput = (Resolve-Path "$testOutput\system")
.\runsystemtests.bat --variable whichNVDA:installed --variable installDir:"${env:nvdaLauncherFile}" --include installer

.\runsystemtests.bat `
--variable whichNVDA:installed `
--variable installDir:"${env:nvdaLauncherFile}" `
--include installer `
--include NVDA `
# last line inentionally blank, allowing all lines to have line continuations.

if($LastExitCode -ne 0) {
Set-AppveyorBuildVariable "testFailExitCode" $LastExitCode
Add-AppveyorMessage "FAIL: System tests. See test results for more information."
Expand Down
3 changes: 2 additions & 1 deletion readme.md
Expand Up @@ -308,7 +308,8 @@ Any arguments given to rununittests.bat are forwarded onto Nose.
Please refer to Nose's own documentation on how to filter tests etc.

### System Tests
System tests can be run with the `runsystemtests.bat` script.
System tests can be run with the `runsystemtests.bat --include <TAG>` script.
To run all tests standard tests for developers use `runsystemtests.bat --include NVDA`.
Internally this script uses the Robot test framework to execute the tests.
Any arguments given to runsystemtests.bat are forwarded onto Robot.
For more details (including filtering and exclusion of tests) see `tests/system/readme.md`.
Expand Down
1 change: 0 additions & 1 deletion source/config/featureFlag.py
Expand Up @@ -151,7 +151,6 @@ def _transformSpec_AddFeatureFlagDefault(specString: str, **kwargs) -> str:
- 'behaviorOfDefault'
- 'optionsEnum'
"""
log.info(f"specString: {specString}, kwargs: {kwargs}")
usage = 'Usage: featureFlag(behaviorOfDefault="enabled"|"disabled", optionsEnum="BoolFlag")'
if "default=" in specString:
raise VdtParamError(
Expand Down

0 comments on commit 8b4c462

Please sign in to comment.