Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
0bd11296
Unverified
Commit
0bd11296
authored
Apr 29, 2021
by
Liam Horne
Committed by
GitHub
Apr 29, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: change test script name to avoid wrongly considered unit tests (#701)
parent
2de25347
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
integration.yml
.github/workflows/integration.yml
+4
-4
package.json
examples/hardhat/package.json
+2
-2
package.json
examples/waffle/package.json
+2
-2
No files found.
.github/workflows/integration.yml
View file @
0bd11296
...
...
@@ -56,21 +56,21 @@ jobs:
working-directory
:
./examples/hardhat
run
:
|
yarn deploy
yarn test
yarn test
:integration
-
name
:
Test & deploy hardhat-example on Optimism
working-directory
:
./examples/hardhat
run
:
|
yarn deploy:ovm
yarn test:ovm
yarn test:
integration:
ovm
-
name
:
Test & deploy waffle-example on waffle (regression)
working-directory
:
./examples/waffle
run
:
|
yarn compile
yarn test
yarn test
:integration
-
name
:
Test & deploy waffle-example on Optimism
working-directory
:
./examples/waffle
run
:
|
yarn compile:ovm
yarn test:ovm
yarn test:
integration:
ovm
examples/hardhat/package.json
View file @
0bd11296
...
...
@@ -9,8 +9,8 @@
"deploy:ovm"
:
"hardhat deploy --network optimism"
,
"compile"
:
"hardhat compile"
,
"compile:ovm"
:
"hardhat compile --network optimism"
,
"test"
:
"hardhat test"
,
"test:ovm"
:
"hardhat test --network optimism"
,
"test
:integration
"
:
"hardhat test"
,
"test:
integration:
ovm"
:
"hardhat test --network optimism"
,
"clean"
:
"rimraf ./cache-ovm ./cache ./artifacts-ovm ./artifacts ./deployments"
},
"devDependencies"
:
{
...
...
examples/waffle/package.json
View file @
0bd11296
...
...
@@ -6,8 +6,8 @@
"clean"
:
"rimraf build"
,
"compile"
:
"waffle"
,
"compile:ovm"
:
"waffle waffle-ovm.json"
,
"test"
:
"mocha 'test/*.spec.js' --timeout 10000"
,
"test:ovm"
:
"TARGET=OVM mocha 'test/*.spec.js' --timeout 50000"
"test
:integration
"
:
"mocha 'test/*.spec.js' --timeout 10000"
,
"test:
integration:
ovm"
:
"TARGET=OVM mocha 'test/*.spec.js' --timeout 50000"
},
"keywords"
:
[
"optimism"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment