-
Notifications
You must be signed in to change notification settings - Fork 156
use travis docker env #688
Conversation
hm, does not work. @wouterj can you help me? |
No. Enchant is put on the apt packages whitelist. Packages in this whitelist can be installed using the apt addon. This addon makes it possible to install packages in the container based environment. -before_script:
- - sudo apt-get install enchant
+sudo: false
+
+addons:
+ apt:
+ packages: [enchant] |
ah, interesting. updated the travis config file, lets see |
the pr build is completely broken. i guess that is the same problem lukas remarked somewhere else. but the push also fails, with lots of spelling errors. locally, i get none of these. any idea what is happening here? |
Well, none of those words are in my gcide dictionary -- either its not taking the whitelist into account or it just suddenly started detecting more words. |
weird. it looks like some things where previously not spell checked. there is nothing for |
Builds are fixed now, if you rebase things should work. |
rebased. lets see...
|
nope. it seems the enchant we end up with uses a different logic regarding spell checks in title. can that be the problem? do we need to update titles / add their words to the wordlist? |
hmm, adding these words to the whitelist would solve it:
|
fixed a bunch of things and added words. looks like this version of enchant has thrown out a lot of technical temrs that we needed. have a close look at the spelling list. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this was unused
81085d3
to
56cef91
Compare
spelling_word_list.txt
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this incorrect? its used here https://github.com/symfony-cmf/symfony-cmf-docs/blob/master/tutorial/conclusion.rst
yay, green and seems good to me. @wouterj can you have a look and merge please? |
follow-up of #686 - try without installing enchant explicitly. @wouterj is that what you ment?