File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3+ # ###############################################################################
4+ # Runs the full pytest suite on the repository.
5+ #
6+ # Usage:
7+ # check/pytest-full [--flags for pytest]
8+ #
9+ # ###############################################################################
10+
311# Get the working directory to the repo root.
412cd " $( dirname " ${BASH_SOURCE[0]} " ) " || exit 1
513cd " $( git rev-parse --show-toplevel) " || exit 1
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3+ # ###############################################################################
4+ # Runs the quick pytest suite on the repository.
5+ #
6+ # This is the recommended set of unit tests for ordinary development.
7+ #
8+ # Usage:
9+ # check/pytest-quick [--flags for pytest]
10+ #
11+ # ###############################################################################
12+
313# Get the working directory to the repo root.
414cd " $( dirname " ${BASH_SOURCE[0]} " ) " || exit 1
515cd " $( git rev-parse --show-toplevel) " || exit 1
You can’t perform that action at this time.
0 commit comments