You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A small set of modules written in Node.js for running automated tests of MATLAB code in response to GitHub events. Also submits code coverage to the Coveralls API.
5
6
@@ -59,9 +60,18 @@ chmod u+x ./prep_env.BAT
59
60
```
60
61
61
62
## Running the tests
62
-
63
+
Before running the tests ensure the dev dependencies are installed.
64
+
On Windows:
65
+
```
66
+
set "DOTENV_CONFIG_PATH=./test/fixtures/.env.test" & npm test
67
+
```
68
+
On Linux:
69
+
```
70
+
DOTENV_CONFIG_PATH=./test/fixtures/.env.test & npm test
71
+
```
72
+
Coverage:
63
73
```
64
-
mocha ./test
74
+
DOTENV_CONFIG_PATH=./test/fixtures/.env.test & npm run coverage
0 commit comments