Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TravisCI error with es-windows #1

Closed
nlamirault opened this issue Apr 29, 2014 · 4 comments
Closed

TravisCI error with es-windows #1

nlamirault opened this issue Apr 29, 2014 · 4 comments

Comments

@nlamirault
Copy link

Hi,
in my Emacs configuration [1], i use es-windows. When i launch unit tests on my host, all tests are correct :

$ make test 
[...]
Ran 54 tests, 54 results as expected (2014-04-29 10:45:59+0200)

On TravisCI, tests fails [2]. Have you ever had this trouble ? Any idea about this problem ?
Regards.

[1] : https://travis-ci.org/nlamirault/scame
[2] : https://travis-ci.org/nlamirault/scame/builds/23942155

@sabof
Copy link
Owner

sabof commented Apr 29, 2014

(require 'face-remap) could be somehow responsible, maybe due to some batch mode quirk. Is there any way you can get the actual error message? Maybe writing this instead would show it?

(condition-case e
    (require 'project-explorer)
  (error (message "%s" e)))

@nlamirault
Copy link
Author

I try using :

(condition-case e
    (require 'project-explorer)
  (error (message "%s" e)))

and

(condition-case e
    (require 'es-windows)
   (error (message "%s" e)))

(use-package project-explorer)

but no more logs. See [1] and [2].

[1] : https://travis-ci.org/nlamirault/scame/builds/24009933
[2] : https://travis-ci.org/nlamirault/scame/builds/24011829

@sabof
Copy link
Owner

sabof commented Apr 29, 2014

Actually the log already had the error message, but it was after the backtrace:

(wrong-type-argument number-or-marker-p unspecified)

@sabof
Copy link
Owner

sabof commented Apr 29, 2014

Probably one of these forms is causing it. Could you try adding a test for each of them?

(defface esw/label-face
    `((t (:inherit font-lock-function-name-face
                   :height ,(* 2 (face-attribute 'default :height)))))
  "Face used for window labels."
  :group 'es-windows)

(defface esw/selection-face
    `((t (:inherit region)))
  "Face used for the selected window."
  :group 'es-windows)

@sabof sabof closed this as completed Nov 6, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants