Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit da76187

Browse filesBrowse files
Merge pull request theseus-rs#78 from theseus-rs/add-missing-tests
test: add missing command error tests and clean up lint directives
2 parents 459c15d + 3e0bcac commit da76187
Copy full SHA for da76187

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

43 files changed

+51
-312
lines changed

‎.github/workflows/ci.yml

Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
build:
2020
name: ${{ matrix.platform }}
21-
needs: [checks]
21+
needs: [ checks ]
2222
runs-on: ${{ matrix.os }}
2323
strategy:
2424
fail-fast: false
@@ -62,7 +62,7 @@ jobs:
6262
CARGO_TERM_COLOR: always
6363
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
6464
LLVM_PROFILE_FILE: postgresql-%p-%m.profraw
65-
RUST_LOG: "info,postgresql_archive=debug,postgresql_embedded=debug"
65+
RUST_LOG: "info,postgresql_archive=debug,postgresql_commands=debug,postgresql_embedded=debug"
6666
RUST_LOG_SPAN_EVENTS: full
6767
RUSTFLAGS: -Cinstrument-coverage
6868
RUSTDOCFLAGS: -Cinstrument-coverage

‎Cargo.lock

Copy file name to clipboardExpand all lines: Cargo.lock
+6-261Lines changed: 6 additions & 261 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎examples/archive_async/src/main.rs

Copy file name to clipboardExpand all lines: examples/archive_async/src/main.rs
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#![forbid(unsafe_code)]
2+
#![deny(clippy::pedantic)]
3+
14
use postgresql_archive::{extract, get_archive, Result, LATEST};
25

36
#[tokio::main]

‎examples/archive_sync/src/main.rs

Copy file name to clipboardExpand all lines: examples/archive_sync/src/main.rs
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#![forbid(unsafe_code)]
2+
#![deny(clippy::pedantic)]
3+
14
use postgresql_archive::blocking::{extract, get_archive};
25
use postgresql_archive::{Result, LATEST};
36

‎examples/embedded_async/src/main.rs

Copy file name to clipboardExpand all lines: examples/embedded_async/src/main.rs
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#![forbid(unsafe_code)]
2+
#![deny(clippy::pedantic)]
3+
14
use postgresql_embedded::{PostgreSQL, Result};
25

36
#[tokio::main]

‎examples/embedded_sync/src/main.rs

Copy file name to clipboardExpand all lines: examples/embedded_sync/src/main.rs
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#![forbid(unsafe_code)]
2+
#![deny(clippy::pedantic)]
3+
14
use postgresql_embedded::blocking::PostgreSQL;
25
use postgresql_embedded::Result;
36

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.