Skip to content

Commit a405573

Browse files
committedJul 4, 2019
Remove unused make command and install required test dependency for travis pipeline
1 parent af483a0 commit a405573

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed
 

‎.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ before_install:
1313
- if [[ "$INSTALL_JDK" == "1" ]] ; then make install_jdk ; fi
1414

1515
script:
16+
- npm install @authenio/samlify-xsd-schema-validator
1617
- npm test
1718

1819
branches:

‎Makefile

+1-3
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ pretest: ;
1414
mkdir -p build/test; \
1515
cp -a test/key test/misc build/test;
1616

17-
validator: ;
18-
1917
install_jdk:
2018
sudo add-apt-repository ppa:openjdk-r/ppa -y
2119
sudo apt-get -qq update
@@ -24,4 +22,4 @@ install_jdk:
2422
doc: ;@echo "prepare and serve the docs"; \
2523
docsify serve ./docs
2624

27-
.PHONY: rebuild pretest doc validator install_jdk
25+
.PHONY: rebuild pretest doc install_jdk

‎package.json

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
"test": "npm run build && NODE_ENV=test nyc ava --verbose build/test",
2121
"test:pure": "NODE_ENV=test nyc ava --verbose build/test",
2222
"coverage": "nyc report --reporter=text-lcov | coveralls",
23-
"preinstall": "make validator",
2423
"hooks:postinstall": "ln -sf $PWD/.pre-commit.sh $PWD/.git/hooks/pre-commit"
2524
},
2625
"contributors": [

0 commit comments

Comments
 (0)
Please sign in to comment.