Fork me on GitHub
#planck
<
2016-12-13
>
ghufran04:12:03

@mfikes: I’m trying to get the tests running before I start making any changes, but I’m getting the following errors:

$ script/test
Running unit tests...
Running integration tests...
Running integration tests...
222,232c222,224
< (defn my-function
<   "This is a cool
<   function with a docstring."
<   [x]
<   (* x x))
< nil
< (defn my-function
<   "This is a cool
<   function with a docstring."
<   [x]
<   (* x x))
---
> Source not found
> nil
> Source not found

Integration tests have failed.
I’m not sure how to interpret the test output or where to go from here.

mfikes04:12:37

That’s interesting.

mfikes04:12:09

So, you are getting those failures on a clean build.

mfikes04:12:37

One idea might be to git clone say, to a your Desktop, go in there and try a script/build and script/test in that fresh clone to see if it fails

mfikes04:12:00

Otherwise this would mean that the build is failing in an odd way on your box.

ghufran04:12:19

let me try that

mfikes04:12:09

(FWIW, https://travis-ci.org/mfikes/planck is building on macOS and Linux, successfully.)

ghufran04:12:31

I assume that means that travis runs the tests before building?