David Barragán Merino
8dbd3df40e
Update copyright
2017-02-20 17:58:01 +01:00
David Barragán Merino
998022c3ba
[Backport] Apply PEP-263 to taiga project
2016-05-31 11:56:15 +02:00
Andrey Antukh
9c4472a787
Add alejandro.alonso copyright preamble to test sources.
2016-01-08 16:08:46 +02:00
Andrey Antukh
501145bdcd
Fix my email on copyright preamble on test source files.
2016-01-08 15:58:30 +02:00
David Barragán Merino
f992d372df
Update license message
2016-01-04 08:51:06 +01:00
David Barragán Merino
9b56a414f0
Fix dates in license messages. Change 2014 to 2014-2015
2015-10-13 11:27:15 +02:00
Jesús Espino
c328414b4d
Fixing a lot of flake8 errors on tests
2015-02-24 19:54:10 +01:00
Andrey Antukh
3061425a67
Improvements and fixes on tests.
2014-09-16 10:48:43 +02:00
Andrey Antukh
01d524adb8
Setup django on start testrunner.
2014-09-16 10:48:43 +02:00
Anler Hp
e98d666a40
Removing unnecessary setup of test database
...
We are already using pg arrays so the unpickle function in sql/tags.sql
is not needed, at least by the moment. I'm removing it because it was
entering in an infinite loop when creating the test database.
2014-06-23 12:26:17 +02:00
David Barragán Merino
767024d0d5
Add more licenses agreements to the tests module
2014-06-19 22:46:31 +02:00
Andrey Antukh
cefbcda91d
Load tags sql on connection is created on tests.
2014-05-28 12:51:44 +02:00
Anler Hp
bc70ab8cc9
Moving fixture into standalone module and new module tests.utils
2014-05-27 13:28:46 +02:00
Anler Hp
ac49a76146
Automatically skip slow tests
...
You can mark a test as slow using:
@pytest.mark.slow
def test_something():
...
Use the option "--runslow" to tell the test runner to also include slow
tests:
py.test --runslow ...
2014-05-22 18:34:03 +02:00
Anler Hp
e1fdc36301
Pytest mutable object fixture.
...
Usage:
def test_something(object):
# mutate object as needed
2014-05-22 18:34:03 +02:00