Skip to content

Commit a163425

Browse files
Add asdf resource + big debugging improvements (#9)
* Add asdf resource * Nvm fixes * Pyenv improvements and new tests * Added debugging capability to running tests on cirrus CLI * Asdf resources * Asdf bug fixes and run script improvements * Vscode download fix (added user-agent to mimic browser) * Removed parallel run for multiple tests and increased timer for git-lfs test * Asdf improvements and fixes. Separated assdf-plugin-version to asdf-plugin-global and asdf-plugin-local * Reworked asdf resources again to match the command names. 'asdf-install' corresponds with asdf install, 'asdf-global' corresponds with asdf global and 'asdf-local' corresponds with asdf local * Regex fix
1 parent c6d0e91 commit a163425

32 files changed

+1365
-88
lines changed

.cirrus.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
run_dev_task:
55
macos_instance:
66
image: codify-test-vm
7+
port: 9226:9226
8+
node_modules_cache:
9+
folder: node_modules
10+
fingerprint_script: cat package-lock.json
11+
populate_script: npm ci
712
run_script:
813
- sleep 2000
914

@@ -15,7 +20,7 @@ integration_test_dev_task:
1520
fingerprint_script: cat package-lock.json
1621
populate_script: npm ci
1722
test_script:
18-
- npm run test:integration
23+
- npm run test:integration -- --disable-console-intercept --inspect --no-file-parallelism
1924

2025
integration_individual_test_task:
2126
macos_instance:
@@ -26,4 +31,4 @@ integration_individual_test_task:
2631
populate_script: npm ci
2732
test_script:
2833
- echo $FILE_NAME
29-
- npm run test -- $FILE_NAME --disable-console-intercept
34+
- npm run test -- $FILE_NAME --disable-console-intercept --inspect --no-file-parallelism

bin/run-test.sh

Lines changed: 0 additions & 3 deletions
This file was deleted.

bin/test-harness.sh

Lines changed: 0 additions & 16 deletions
This file was deleted.

codify.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"type": "homebrew",
44
"formulae": [
55
"cirruslabs/cli/cirrus",
6-
"cirruslabs/cli/tart"
6+
"cirruslabs/cli/tart",
7+
"sshpass"
78
]
89
}
910
]

0 commit comments

Comments
 (0)