jaraco / irc

Full-featured Python IRC library for Python.
MIT License
392 stars 86 forks source link

Tests are continually run, not continuously #51

Closed jaraco closed 8 years ago

jaraco commented 8 years ago

Your README has this:

Tests are continuously run using Travis-CI.

There's a slight difference between "continuously" and "continually", and y'all are using the wrong one. Basically, continuously means "no gaps" where "continually" means "regularly, but often". So, road construction would be continual, because the workers go home at night. A mathematical function might be continuous if it doesn't have gaps.

If tests were continuously run, that would mean that the testing process never terminates (and thus would never give a result). This would defeat the point of testing. I'm guessing this isn't what you mean. Continual testing would mean that tests are run periodically and regularly (probably whenever you push a commit).

http://www.vocabulary.com/articles/chooseyourwords/continual-continuous/


jaraco commented 8 years ago

Oops, I accidentally submitted this twice.


Original comment by: Peter Harpending

jaraco commented 8 years ago

Duplicate of #50.


Original comment by: Peter Harpending