Skip to content

Commit

Permalink
Don't run acceptance test by default
Browse files Browse the repository at this point in the history
  • Loading branch information
iangreenleaf committed Jun 6, 2012
1 parent 2d6ef9f commit 7afd9a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
test:
./node_modules/.bin/mocha --compilers coffee:coffee-script

.PHONY: test
test-all:
./node_modules/.bin/mocha --compilers coffee:coffee-script --recursive

.PHONY: test-all test
2 changes: 1 addition & 1 deletion test/acceptance.coffee → test/acceptance/external.coffee
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This test does actual API requests against github.
# All others mock out the network activity.
[ gh, assert ] = require "./test_helper"
[ gh, assert ] = require "../test_helper"

describe "actual request", ->
response = [ { name: "foo", commit: { sha: "abcdeg", url: "xxx" } } ]
Expand Down

0 comments on commit 7afd9a5

Please sign in to comment.