Skip to content

Latest commit

 

History

History
 
 

01-data-model

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

The Python Data Model

Sample code for Chapter 1 of Fluent Python 2e by Luciano Ramalho (O'Reilly, 2020)

Running the tests

Doctests

Use Python's standard doctest module to check stand-alone doctest file:

$ python3 -m doctest frenchdeck.doctest -v

And to check doctests embedded in a module:

$ python3 -m doctest vector2d.py -v

Jupyter Notebook

Install pytest and the nbval plugin:

$ pip install pytest nbval

Run:

$ pytest --nbval