File tree 5 files changed +18
-9
lines changed
5 files changed +18
-9
lines changed Original file line number Diff line number Diff line change 81
81
# FROM scratch
82
82
83
83
# Run integration tests on all packages built during the `package` step.
84
- # test:
85
- # FROM scratch
84
+ test :
85
+ FROM scratch
86
+ BUILD ./tests+test-integration
86
87
87
88
# Publish packages if all integration tests have passed. (Failure to pass tests will prevent packages being published.)
88
89
# publish:
@@ -95,5 +96,5 @@ local-ci-run:
95
96
BUILD +check
96
97
BUILD +build
97
98
# BUILD +package
98
- # BUILD +test
99
+ BUILD +test
99
100
# BUILD +publish
Original file line number Diff line number Diff line change @@ -3,6 +3,14 @@ name = "tests"
3
3
version = " 0.1.0"
4
4
edition = " 2021"
5
5
publish = false
6
+ authors = [
7
+ " Stefano Cunego <[email protected] >"
8
+ ]
9
+ rust-version = " 1.73"
10
+ homepage = " https://input-output-hk.github.io/catalyst-voices"
11
+ repository = " https://github.com/input-output-hk/catalyst-voices"
12
+ license = " MIT OR Apache-2.0"
13
+
6
14
7
15
[dev-dependencies ]
8
16
Original file line number Diff line number Diff line change 1
1
#[ test]
2
- pub fn end2end ( ) {
2
+ pub fn end2end ( ) {
3
3
assert ! ( true ) ;
4
- }
4
+ }
Original file line number Diff line number Diff line change 1
1
#[ test]
2
- pub fn integration ( ) {
2
+ pub fn integration ( ) {
3
3
assert ! ( true ) ;
4
- }
4
+ }
Original file line number Diff line number Diff line change 1
1
#[ test]
2
- pub fn non_functional ( ) {
2
+ pub fn non_functional ( ) {
3
3
assert ! ( true ) ;
4
- }
4
+ }
You can’t perform that action at this time.
0 commit comments