Skip to content

Commit a2ca947

Browse files
committed
CI: Run with --nocapture so we can see qFatal messages
1 parent 0c26877 commit a2ca947

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ jobs:
4444
cached: ${{ steps.cache-qt.outputs.cache-hit }}
4545
modules: 'qtwebengine'
4646
- name: Run tests
47-
run: xvfb-run cargo test --all-features
47+
run: xvfb-run cargo test --all-features -- --nocapture

qmetaobject/tests/tests.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -975,7 +975,6 @@ fn test_qvariant_qimage_qpixmap() {
975975
assert_eq!(pix.size(), QSize { width: 12, height: 23 });
976976
let img2 = QImage::from_qvariant(pix.clone().to_qvariant()).unwrap();
977977
assert_eq!(img2.size(), QSize { width: 12, height: 23 });
978-
dbg!(img2.get_pixel_color(3, 4).get_rgba());
979978
assert!(img2.get_pixel_color(2, 2) == QColor::from_rgb_f(0., 0., 1.));
980979
assert!(img2.get_pixel_color(3, 4) == QColor::from_rgb_f(1., 0., 0.));
981980

0 commit comments

Comments
 (0)