Skip to content

Commit e5e2efd

Browse files
committed
script docs
1 parent 2a76073 commit e5e2efd

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

check/pytest-full

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
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.
412
cd "$( dirname "${BASH_SOURCE[0]}" )" || exit 1
513
cd "$(git rev-parse --show-toplevel)" || exit 1

check/pytest-quick

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
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.
414
cd "$( dirname "${BASH_SOURCE[0]}" )" || exit 1
515
cd "$(git rev-parse --show-toplevel)" || exit 1

0 commit comments

Comments
 (0)