spyne 0.20.0 → 0.20.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.eslintignore ADDED
@@ -0,0 +1,2 @@
1
+ src/tests/**/*.test.js
2
+ src/tests/mocks/*.js
package/.travis.yml CHANGED
@@ -1,20 +1,20 @@
1
1
  # .travis.yml
2
- dist: jammy # or focal, etc.
2
+ dist: jammy
3
3
  language: node_js
4
4
 
5
5
  node_js:
6
6
  - '16'
7
7
  - '18'
8
- - node # 'node' is the latest stable version
8
+ # Removed 'node' to avoid testing the very latest (which may require npm >= 11)
9
9
 
10
10
  services:
11
- - xvfb # If you need a browser environment
11
+ - xvfb # If you need a browser environment
12
12
 
13
13
  cache:
14
14
  npm: true
15
15
 
16
- before_install:
17
- - npm install -g npm@latest
16
+ # before_install:
17
+ # - npm install -g npm@latest # Removed or commented out to avoid engine mismatch
18
18
 
19
19
  install:
20
20
  - npm ci
@@ -27,4 +27,4 @@ notifications:
27
27
 
28
28
  branches:
29
29
  only:
30
- - main # Only build on 'main' branch
30
+ - main
package/karma.conf.js CHANGED
@@ -85,7 +85,7 @@ module.exports = function (config) {
85
85
  webpackMiddleware: { noInfo: true },
86
86
 
87
87
  // Report results with coverage
88
- reporters: ['coverage'],
88
+ reporters: ['progress', 'coverage'],
89
89
 
90
90
  coverageReporter: {
91
91
  reporters: [