You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by da...@apache.org on 2020/09/10 07:21:11 UTC

[logging-log4net] branch master updated: :wrench: run dotnet core tests as part of regular test run

This is an automated email from the ASF dual-hosted git repository.

davydm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4net.git


The following commit(s) were added to refs/heads/master by this push:
     new c3a6e32  :wrench: run dotnet core tests as part of regular test run
c3a6e32 is described below

commit c3a6e32872e1eecbaa9af231f21bb20bf37e2413
Author: Davyd McColl <da...@gmail.com>
AuthorDate: Thu Sep 10 09:16:00 2020 +0200

    :wrench: run dotnet core tests as part of regular test run
---
 package.json | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/package.json b/package.json
index ec8b812..7b41e90 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,8 @@
   "version": "2.0.9",
   "description": "Log4Net is a logging framework for .NET",
   "scripts": {
-    "test": "cross-env NUNIT_PROCESS=Single MAX_CONCURRENCY=1 run-s clean-build \"zarro test-dotnet\"",
+    "test": "cross-env NUNIT_PROCESS=Single MAX_CONCURRENCY=1 run-s clean-build \"zarro test-dotnet\" run-dotnet-core-tests",
+    "run-dotnet-core-tests": "cross-env DOTNET_CORE=1 run-s \"zarro quick-test-dotnet\"",
     "clean-build": "rimraf build",
     "build": "run-s clean-build \"zarro build\"",
     "build-release": "cross-env BUILD_CONFIGURATION=Release run-s clean-build \"zarro build\"",