This is an automated email from the ASF dual-hosted git repository.
nightowl888 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git.
from ffaf565 Improved approach of fixing bug in newly added Grouping unit
tests on unix.
new 53a9af3 lucene-cli: Added appsettings.json file with the default
settings. (See #453)
new 9213cb9 lucene-cli: Made appsettings.json file optional (See #453)
new 3946e15 Lucene.Net.Cli.Configuration.TestConfigurationSettings: Added
[LuceneNetSpecifc] attribute
new a54a65b Lucene.Net.Tests.Cli.Configuration.TestConfigurationSettings:
Renamed ConfigurationSettingsTest to follow naming conventions of this project.
new 9e256d0 BUG: Lucene.Net.Tests.Cli.EnvironmentTest: Subclass
LuceneTestCase or NUnit won't locate our tests
new f9f4754 BREAKING: Changed exit codes to well-defined constants to
make testing simpler
new 384df50 Lucene.Net.Tests.Cli: Added InstallationTest to install
lucene-cli and run it to ensure it can be installed and has basic
functionality. (See #453)
new 2b9716f run-tests-on-os.yml: Download the lucene-cli NuGet package on
the test server, since it is required by installation tests (See #453)
The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
azure-pipelines.yml | 16 +++
build/azure-templates/run-tests-on-os.yml | 10 ++
.../Egothor.Stemmer/Compile.cs | 6 +-
.../Egothor.Stemmer/DiffIt.cs | 6 +-
...ionSettings.cs => ConfigurationSettingsTest.cs} | 5 +-
.../tools/Lucene.Net.Tests.Cli/EnvironmentTest.cs | 4 +-
.../tools/Lucene.Net.Tests.Cli/InstallationTest.cs | 160 +++++++++++++++++++++
src/dotnet/tools/lucene-cli/ConfigurationBase.cs | 4 +-
src/dotnet/tools/lucene-cli/Program.cs | 2 +-
src/dotnet/tools/lucene-cli/appsettings.json | 4 +
src/dotnet/tools/lucene-cli/commands/ExitCode.cs | 9 ++
.../tools/lucene-cli/commands/RootCommand.cs | 2 +-
.../commands/analysis/AnalysisCommand.cs | 2 +-
.../commands/benchmark/BenchmarkCommand.cs | 2 +-
.../tools/lucene-cli/commands/demo/DemoCommand.cs | 2 +-
.../lucene-cli/commands/index/IndexCommand.cs | 2 +-
.../tools/lucene-cli/commands/lock/LockCommand.cs | 2 +-
src/dotnet/tools/lucene-cli/lucene-cli.csproj | 9 +-
18 files changed, 228 insertions(+), 19 deletions(-)
rename
src/dotnet/tools/Lucene.Net.Tests.Cli/Configuration/{TestConfigurationSettings.cs
=> ConfigurationSettingsTest.cs} (96%)
create mode 100644 src/dotnet/tools/Lucene.Net.Tests.Cli/InstallationTest.cs
create mode 100644 src/dotnet/tools/lucene-cli/appsettings.json
create mode 100644 src/dotnet/tools/lucene-cli/commands/ExitCode.cs