Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

The environment variables set by Travis - Python

language: python
script: pytest -s

python:
  - "3.8"
import os

for env in sorted(os.environ.keys()):
    print(f"{env:25} = {os.environ[env]}")



def test_anything():
    pass