Skip to content

Commit 1944b1b

Browse files
committed
makefile
1 parent 09e9244 commit 1944b1b

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ $(COMMON_CONSTRAINTS_TXT):
4545
wget -O "$(@)" https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt || touch "$(@)"
4646

4747
compile-requirements: export CUSTOM_COMPILE_COMMAND=make upgrade
48-
compile-requirements: $(COMMON_CONSTRAINTS_TXT) ## Re-compile *.in requirements to *.txt, without upgrading
48+
compile-requirements: $(COMMON_CONSTRAINTS_TXT) ## Re-compile *.in requirements to *.txt
4949
pip install -qr requirements/pip-tools.txt
5050
# Make sure to compile files after any other files they include!
5151
pip-compile ${COMPILE_OPTS} --allow-unsafe requirements/pip.in

docs/testing.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,16 @@ To run just the code quality checks:
2929
3030
$ make test-quality
3131
32+
Alternatively, run quality tests one by one:
33+
34+
.. code-block:: bash
35+
36+
$ make test-lint
37+
$ make test-types
38+
$ make test-codestyle
39+
$ make test-docstyle
40+
$ make test-isort
41+
3242
To run the unit tests under every supported Python version and the code
3343
quality checks:
3444

@@ -42,3 +52,5 @@ test cases:
4252
.. code-block:: bash
4353
4454
$ make coverage
55+
56+

0 commit comments

Comments
 (0)