Skip to content

Commit

Permalink
Merge pull request #1250 from EspressoSystems/run_view_refactor
Browse files Browse the repository at this point in the history
Run view refactor
  • Loading branch information
shenkeyao authored Aug 4, 2023
2 parents 987338b + 031ec68 commit ad1acfe
Show file tree
Hide file tree
Showing 130 changed files with 16,584 additions and 7,751 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
/target/x86_64-unknown-linux-musl/release*/incremental
!/target/x86_64-unknown-linux-musl/release*/examples/
!/target/release*/examples/
!/target/release-lto/examples/
!/target/release*/benchmark_client
Dockerfile*
11 changes: 7 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
/target
/result
/out*.txt
.idea
**/target
**/result
**/out*.txt
**/out*.json
**/.idea
/*.pdf
**/target_dirs
/target_dirs
/.vscode/settings.json
**/.DS_Store
23 changes: 23 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"cargo": {
"args": [
"test",
"--no-run",
"--features=full-ci",
"--package=hotshot-testing",
"test_basic_web_server",
"--",
"--nocapture"
],
"filter": {
"name": "hotshot-testing",
"kind": "lib"
}
},
"program": "${cargo:program}",
"cwd": "${workspaceFolder}",
"name": "Debug test_basic_web_server test"
},

{
"type": "lldb",
"request": "launch",
Expand Down
Loading

0 comments on commit ad1acfe

Please sign in to comment.