@@ -4,23 +4,23 @@ help: ## Display this help screen
4
4
@grep -E ' ^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST ) | sort | awk ' BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
5
5
6
6
cleanup :
7
- @docker- compose down
7
+ @docker compose down
8
8
9
9
cleanup-failure :
10
- @docker- compose down
10
+ @docker compose down
11
11
exit 1
12
12
13
13
# #
14
14
# # .NET
15
15
# #
16
16
test-metrics-dotnet : # # Run Metrics tests against the .NET SDK
17
- docker- compose up --build --detach integration_dotnet_metrics_v6.0
17
+ docker compose up --build --detach integration_dotnet_metrics_v6.0
18
18
sleep 5
19
19
npm run test:integration-metrics || make cleanup-failure
20
20
@make cleanup
21
21
22
22
test-webhooks-dotnet : # # Run webhooks tests against the .NET SDK
23
- docker- compose up --build --detach integration_dotnet_webhooks_v6.0
23
+ docker compose up --build --detach integration_dotnet_webhooks_v6.0
24
24
npm run test:integration-webhooks || make cleanup-failure
25
25
@make cleanup
26
26
@@ -29,22 +29,22 @@ test-webhooks-dotnet: ## Run webhooks tests against the .NET SDK
29
29
# #
30
30
31
31
test-metrics-node-express : # # Run Metrics tests against the Node SDK + Express
32
- docker- compose up --build --detach integration_node_express
32
+ docker compose up --build --detach integration_node_express
33
33
SUPPORTS_HASHING=true npm run test:integration-metrics || make cleanup-failure
34
34
@make cleanup
35
35
36
36
test-webhooks-node-express : # # Run webhooks tests against the Node SDK + Express
37
- docker- compose up --build --detach integration_node_express
37
+ docker compose up --build --detach integration_node_express
38
38
npm run test:integration-webhooks || make cleanup-failure
39
39
@make cleanup
40
40
41
41
test-metrics-node-fastify : # # Run Metrics tests against the Node SDK + Fastify
42
- docker- compose up --build --detach integration_node_fastify
42
+ docker compose up --build --detach integration_node_fastify
43
43
SUPPORTS_HASHING=true npm run test:integration-metrics || make cleanup-failure
44
44
@make cleanup
45
45
46
46
test-metrics-node-hapi : # # Run Metrics tests against the Node SDK + hapi
47
- docker- compose up --build --detach integration_node_hapi
47
+ docker compose up --build --detach integration_node_hapi
48
48
SUPPORTS_HASHING=true npm run test:integration-metrics || make cleanup-failure
49
49
@make cleanup
50
50
@@ -53,12 +53,12 @@ test-metrics-node-hapi: ## Run Metrics tests against the Node SDK + hapi
53
53
# #
54
54
55
55
test-metrics-php-laravel : # # Run Metrics tests against the PHP SDK + Laravel
56
- docker- compose up --build --detach integration_php_laravel
56
+ docker compose up --build --detach integration_php_laravel
57
57
SUPPORTS_MULTIPART=true npm run test:integration-metrics || make cleanup-failure
58
58
@make cleanup
59
59
60
60
test-webhooks-php-laravel : # # Run webhooks tests against the PHP SDK + Laravel
61
- docker- compose up --detach integration_php_laravel
61
+ docker compose up --detach integration_php_laravel
62
62
SUPPORTS_MULTIPART=true npm run test:integration-webhooks || make cleanup-failure
63
63
@make cleanup
64
64
@@ -67,17 +67,17 @@ test-webhooks-php-laravel: ## Run webhooks tests against the PHP SDK + Laravel
67
67
# #
68
68
69
69
test-metrics-python-django : # # Run Metrics tests against the Python SDK + Django
70
- docker- compose up --build --detach integration_metrics_python_django
70
+ docker compose up --build --detach integration_metrics_python_django
71
71
npm run test:integration-metrics || make cleanup-failure
72
72
@make cleanup
73
73
74
74
test-metrics-python-flask : # # Run Metrics tests against the Python SDK + Flask
75
- docker- compose up --build --detach integration_python_flask_metrics
75
+ docker compose up --build --detach integration_python_flask_metrics
76
76
npm run test:integration-metrics || make cleanup-failure
77
77
@make cleanup
78
78
79
79
test-webhooks-python-flask : # # Run webhooks tests against the Python SDK + Flask
80
- docker- compose up --build --detach integration_python_flask_webhooks
80
+ docker compose up --build --detach integration_python_flask_webhooks
81
81
npm run test:integration-webhooks || make cleanup-failure
82
82
@make cleanup
83
83
@@ -91,13 +91,13 @@ test-webhooks-python-flask: ## Run webhooks tests against the Python SDK + Flask
91
91
# This is the only thing that works consistently. It's not great but it'll do.
92
92
93
93
test-metrics-ruby-rails : # # Run Metrics tests against the Ruby SDK + Rails
94
- docker- compose up --build --detach integration_ruby_rails
94
+ docker compose up --build --detach integration_ruby_rails
95
95
sleep 5
96
96
SUPPORTS_HASHING=true npm run test:integration-metrics || make cleanup-failure
97
97
@make cleanup
98
98
99
99
test-webhooks-ruby-rails : # # Run webhooks tests against the Ruby SDK + Rails
100
- docker- compose up --build --detach integration_ruby_rails
100
+ docker compose up --build --detach integration_ruby_rails
101
101
sleep 5
102
102
SUPPORTS_HASHING=true npm run test:integration-webhooks || make cleanup-failure
103
103
@make cleanup
0 commit comments