mirror of
https://github.com/yaml/pyyaml.git
synced 2025-10-19 11:03:18 +00:00

* custom pytest collector and item to surface pyyaml data-driven tests as individual pytest unit tests * moved some true unit tests to pytest-native tests * deprecated `setup.py test` custom command * updated Makefile to use pytest * align test matrix with planned 7.x Python support
15 lines
532 B
Text
15 lines
532 B
Text
# Ordered sequence of nodes
|
|
Block style: !!seq
|
|
- Mercury # Rotates - no light/dark sides.
|
|
- Venus # Deadliest. Aptly named.
|
|
- Earth # Mostly dirt.
|
|
- Mars # Seems empty.
|
|
- Jupiter # The king.
|
|
- Saturn # Pretty.
|
|
- Uranus # Where the sun hardly shines.
|
|
- Neptune # Boring. No rings.
|
|
- Pluto # You call this a planet?
|
|
Flow style: !!seq [ Mercury, Venus, Earth, Mars, # Rocks
|
|
Jupiter, Saturn, Uranus, Neptune, # Gas
|
|
Pluto ] # Overrated
|
|
|