summaryrefslogtreecommitdiff
path: root/README.rst
Commit message (Collapse)AuthorAge
* Add Traits (Closes #251).Raphaël Barrois2016-04-02
| | | | | | Based on a boolean flag, those will alter the definitions of the current factory, taking precedence over pre-defined behavior but overridden by callsite-level arguments.
* Stop advertising factory_boy supports Python 2.6Hervé Cauwelier2016-03-04
| | | | Support was already gone with literal sets.
* factory: LazyFunction to just call a function in the simplest caseHervé Cauwelier2016-02-12
| | | | No need to wrap it in a lambda to strip the object argument from LazyAttribute or the sequence argument from Sequence.
* Document mailing-listRaphaël Barrois2016-02-10
|
* Update README: support 2.6-3.5Raphaël Barrois2016-02-10
|
* Switch badges to shields.ioRaphaël Barrois2016-02-10
|
* Clarify the (dis)advantages of randomized tests.Raphaël Barrois2016-01-07
| | | | | | As noted in #259, fully random tests have some issues, notably possibly flaky builds: it is quite helpful to be able to choose the random seeds used by factory_boy and friends.
* Add factory.Faker()Raphaël Barrois2015-05-22
| | | | | This relies on the ``fake-factory`` library, and provides realistic random values for most field types.
* Update README.rst - "attributes" is not a strategy (Closes #204).Pauly Fenwar2015-05-20
| | | | The wording of the readme suggested that "attributes" is a strategy just like "build" and "create", but this is not the case in the implementation (for example keyword arguments do not work, SubFactory fields don't behave as expected), so I have removed the mention of this and replaced the attributes example to mention the "stub" strategy.
* Simpler way to define version names.Raphaël Barrois2015-04-27
| | | | Avoid hitting bugs with max shebang line length in jenkins.
* Update testing instructions.Raphaël Barrois2015-04-27
|
* README: Remove duplicate "latest release" block.Raphaël Barrois2015-04-21
|
* Add badges to README.Raphaël Barrois2015-04-21
|
* Add upgrade instructions for 2.5.0Raphaël Barrois2015-03-27
|
* Fix typos in docs (Closes #159, closes #178, closes #188).Raphaël Barrois2015-03-03
|
* Remove sphinx markup from README.rst (Closes #180).Raphaël Barrois2015-02-18
| | | | | That file should be readable by PyPI's RST parser, which doesn't support Sphinx constructs.
* Fix typo (Closes #144).Raphaël Barrois2014-06-21
| | | | Thanks to @clouserw for the report.
* Improve docs on create_batch (Closes #139).Raphaël Barrois2014-05-18
|
* Rename 'target' to 'model'.Raphaël Barrois2014-05-18
|
* Update docs for class Meta.Raphaël Barrois2014-05-18
|
* Improve README.Raphaël Barrois2014-05-17
|
* Rename README.Raphaël Barrois2013-11-15
| | | | Let's keep github happy...
* Add README.Raphaël Barrois2012-02-24
| | | | Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
* Update README.rstAndrey Voronov2012-02-02
|
* Remove deprecated examples from the doc -- explicit is better than implicit, ↵Raphaël Barrois2012-01-13
| | | | | | etc. Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
* Use pip instead of easy_installGeorge Hickman2012-01-11
|
* Fix kwargs syntax in README custom creation section.Raphaël Barrois2012-01-02
| | | | | | Thanks to 'Lispython' (https://github.com/Lispython) for finding the mistake. Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
* Update author/maintainer information.v1.0.4Raphaël Barrois2011-12-21
| | | | Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
* Update README.Raphaël Barrois2011-12-20
| | | | Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
* Fix doc for _setup_next_sequence; fix trailing whitespace.Raphaël Barrois2011-07-13
| | | | Signed-off-by: Raphaël Barrois <raphael.barrois@polyconseil.fr>
* Add some doc on subfactories.Raphaël Barrois2011-07-05
| | | | Signed-off-by: Raphaël Barrois <raphael.barrois@polyconseil.fr>
* Improve README.Raphaël Barrois2011-05-13
| | | | Signed-off-by: Raphaël Barrois <raphael.barrois@polyconseil.fr>
* Improve handling of custom build/create functions.Raphaël Barrois2011-05-13
| | | | | | Only public attributes (i.e not starting with _) will be handled properly. Signed-off-by: Raphaël Barrois <raphael.barrois@polyconseil.fr>
* minor correction to the LazyAttributeSequence example in the readmeMark Sandstrom2010-08-22
|
* factory_boy: a test fixtures replacement based on thoughtbot's factory_girl ↵Mark Sandstrom2010-08-22
for Ruby