We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7152d4d commit f206293Copy full SHA for f206293
packages/pg/Makefile
@@ -35,19 +35,14 @@ test-connection:
35
36
test-missing-native:
37
@echo "***Testing optional native install***"
38
- @rm -rf node_modules/pg-native
39
- @rm -rf node_modules/libpq
40
@node test/native/missing-native.js
41
42
43
44
-node_modules/pg-native/index.js:
45
- @npm i --no-save pg-native
46
-
47
-test-native: node_modules/pg-native/index.js test-connection
+test-native: test-connection
48
@echo "***Testing native bindings***"
+ @npm i --no-save pg-native
49
@find test/native -name "*-tests.js" | $(node-command)
50
@find test/integration -name "*-tests.js" | $(node-command) native
+ @npm uninstall pg-native
51
52
test-integration: test-connection
53
@echo "***Testing Pure Javascript***"
0 commit comments