# Default VGA 256-color palette # First 16 colors 0: 0 0 0 1: 0 0 42 .......................................... 2: 0 42 0 .......................................... 3: 0 42 42 .......................................... .......................................... 4: 42 0 0 .......................................... 5: 42 0 42 .......................................... .......................................... 6: 42 21 0 .......................................... ..................... 7: 42 42 42 .......................................... .......................................... .......................................... 8: 21 21 21 ..................... ..................... ..................... 9: 21 21 63 ..................... ..................... ............................................................... 10: 21 63 21 ..................... ............................................................... ..................... 11: 21 63 63 ..................... ............................................................... ............................................................... 12: 63 21 21 ............................................................... ..................... ..................... 13: 63 21 63 ............................................................... ..................... ............................................................... 14: 63 63 21 ............................................................... ............................................................... ..................... 15: 63 63 63 ............................................................... ............................................................... ............................................................... # Greyscale 16: 0 0 0 17: 5 5 5 ..... ..... ..... 18: 8 8 8 ........ ........ ........ 19: 11 11 11 ........... ........... ........... 20: 14 14 14 .............. .............. .............. 21: 17 17 17 ................. ................. ................. 22: 20 20 20 .................... .................... .................... 23: 24 24 24 ........................ ........................ ........................ 24: 28 28 28 ............................ ............................ ............................ 25: 32 32 32 ................................ ................................ ................................ 26: 36 36 36 .................................... .................................... .................................... 27: 40 40 40 ........................................ ........................................ ........................................ 28: 45 45 45 ............................................. ............................................. ............................................. 29: 50 50 50 .................................................. .................................................. .................................................. 30: 56 56 56 ........................................................ ........................................................ ........................................................ 31: 63 63 63 ............................................................... ............................................................... ............................................................... # Cycle 0 (light) 32: 0 0 63 ............................................................... 33: 16 0 63 ................ ............................................................... 34: 31 0 63 ...............................
name: Python pytest, doctest and manpage-completion EXPECTED FAILURE
on:
push:
paths:
- '.github/workflows/doctest.yml'
- '*.py'
jobs:
test_py:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: doctest
run: |
make test_pytest test_doctest test_other