Skip to content

Commit

Permalink
ci/cd: remove custom test resolver script
Browse files Browse the repository at this point in the history
  • Loading branch information
julio4 committed Sep 18, 2024
1 parent 3d2ed76 commit 0c3549f
Show file tree
Hide file tree
Showing 39 changed files with 35 additions and 196 deletions.
3 changes: 0 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,6 @@ starknet.workspace = true
[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true

[[target.starknet-contract]]
casm = true
```
Expand Down
5 changes: 1 addition & 4 deletions listings/advanced-concepts/ecdsa_verification/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/advanced-concepts/hash_trait/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/advanced-concepts/library_calls/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/advanced-concepts/simple_account/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,5 @@ edition = "2024_07"
[dependencies]
starknet.workspace = true
openzeppelin.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/advanced-concepts/store_using_packing/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/advanced-concepts/struct_as_mapping_key/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/advanced-concepts/write_to_any_slot/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/applications/advanced_factory/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ crowdfunding = { path = "../crowdfunding" }

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
casm = true
build-external-contracts = ["crowdfunding::campaign::Campaign"]
5 changes: 1 addition & 4 deletions listings/applications/components/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/applications/components_dependencies/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,5 @@ components = { path = "../components" }

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/applications/constant_product_amm/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,5 @@ openzeppelin.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/applications/crowdfunding/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ snforge_std.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
build-external-contracts = ["openzeppelin_presets::erc20::ERC20Upgradeable"]
5 changes: 1 addition & 4 deletions listings/applications/erc20/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
4 changes: 0 additions & 4 deletions listings/applications/nft_dutch_auction/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,5 @@ snforge_std.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true

[[target.starknet-contract]]
build-external-contracts = ["erc20::token::erc20"]
5 changes: 1 addition & 4 deletions listings/applications/simple_storage_starknetjs/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/applications/simple_vault/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,5 @@ erc20 = { path = "../erc20" }

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/applications/staking/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,5 @@ openzeppelin.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/applications/timelock/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ components.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
casm = true
5 changes: 1 addition & 4 deletions listings/applications/upgradeable_contract/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/getting-started/bytearray/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/getting-started/cairo_cheatsheet/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
allowed-libfuncs-list.name = "experimental"
5 changes: 1 addition & 4 deletions listings/getting-started/calling_other_contracts/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/getting-started/constructor/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/getting-started/counter/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/getting-started/custom_type_serde/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/getting-started/errors/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/getting-started/events/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/getting-started/factory/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/getting-started/interfaces_traits/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/getting-started/mappings/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test = "2.7.1"

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/getting-started/storage/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/getting-started/storing_custom_types/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/getting-started/testing_how_to/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/getting-started/variables/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
5 changes: 1 addition & 4 deletions listings/getting-started/visibility/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ starknet.workspace = true

[dev-dependencies]
cairo_test.workspace = true

[scripts]
test.workspace = true


[[target.starknet-contract]]
22 changes: 0 additions & 22 deletions scripts/test_resolver.sh

This file was deleted.

Loading

0 comments on commit 0c3549f

Please sign in to comment.