mrblackjack 0.1.8

Simple framework for testing Kubernetes operators
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
default: build

build:
	cargo test

run:
	BLACKJACK_LOG_LEVEL=blackjack=debug cargo run --bin blackjack test

run-info:
	BLACKJACK_LOG_LEVEL=blackjack=info cargo run --bin blackjack test

.PHONY: test
test:
	sh test/run.sh

schema/test_spec.yaml: src/test_spec.rs
	cargo run --bin make-schema > $@