Skip to content

Commit

Permalink
clean up debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
aearly committed Jun 3, 2018
1 parent 3015ce6 commit 7f05f5c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ env:

after_success: npm run coveralls

before_install:
- sudo apt-get install -y make

# Needed to run Karma with Firefox on Travis
# http://karma-runner.github.io/0.13/plus/travis.html
Expand All @@ -29,8 +27,6 @@ before_script:
script:
- "[ $BROWSER == true ] || npm test"
# ensure buildable
- "[ $MAKE_TEST == false ] || make --version"
- "[ $MAKE_TEST == false ] || make list"
- "[ $MAKE_TEST == false ] || make -j 4"
# test in firefox
- "[ $BROWSER == false ] || npm run mocha-browser-test"
6 changes: 1 addition & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
# This makefile is meant to be run on OSX/Linux. Make sure any artifacts
# This makefile is meant to be run on OSX/Linux. Make sure any dist/ artifacts
# created here are checked in so people on all platforms can run npm scripts.
# This build should be run once per release.

OLD_VARS := $(.VARIABLES)

SHELL=/bin/bash
export PATH := ./node_modules/.bin/:$(PATH):./bin/

Expand Down Expand Up @@ -49,8 +47,6 @@ $(A): $$(SRC_$(A))
endef
$(foreach A,$(ALIAS_ES),$(eval $(COPY_ES_ALIAS)))

$(foreach V,$(filter-out $(OLD_VARS), $(.VARIABLES)), $(info $(V): $($(V))))

all: clean lint build test

test:
Expand Down

0 comments on commit 7f05f5c

Please sign in to comment.