File: Makefile

package info (click to toggle)
python-openshift 0.13.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 332 kB
  • sloc: python: 1,824; makefile: 20; sh: 14
file content (14 lines) | stat: -rw-r--r-- 189 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: test

ARTIFACT_DIR ?= ./

test: test-lint test-unit test-integration

test-lint:
	flake8 .

test-unit:
	pytest test/unit -v -r s

test-integration:
	pytest test/integration -v -r s