forked from inspec/inspec-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (18 loc) · 649 Bytes
/
Makefile
File metadata and controls
28 lines (18 loc) · 649 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
sure: unit_test
doubly_sure: unit_test set_up int_test tear_down
unit_test:
docker-compose run --rm --entrypoint rake tester
int_test:
docker-compose run --rm --entrypoint rake tester test:run_integration_tests
set_up:
docker-compose run --rm --entrypoint rake tester test:setup_integration_tests --trace
tear_down:
docker-compose run --rm --entrypoint rake tester test:cleanup_integration_tests --trace
rebuild:
docker-compose build --force-rm --no-cache
shell_aws:
docker-compose run --rm --entrypoint bash aws
shell_tester:
docker-compose run --rm --entrypoint bash tester
logout:
docker-compose run --rm aws rm -rf /app/.aws