deleted cargo config and fmt
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
[target.x86_64-unknown-linux-gnu]
|
||||
linker = "clang"
|
||||
rustflags = ["-C", "link-arg=-fuse-ld=/usr/bin/mold"]
|
||||
@@ -6,7 +6,6 @@ Dockerfile
|
||||
/migrations
|
||||
/node_modules
|
||||
/assets/css/main.css
|
||||
/.cargo
|
||||
/.github
|
||||
README.md
|
||||
/tests
|
||||
|
||||
4
.github/workflows/general.yml
vendored
4
.github/workflows/general.yml
vendored
@@ -51,7 +51,7 @@ jobs:
|
||||
--locked
|
||||
- name: Create app user in Postgres
|
||||
run: |
|
||||
sudo apt-get update && sudo apt-get install postgresql-client
|
||||
sudo apt-get update && sudo apt-get install postgresql-client -y
|
||||
|
||||
CREATE_QUERY="CREATE USER ${APP_USER} WITH PASSWORD '${APP_USER_PWD}';"
|
||||
PGPASSWORD="password" psql -U postgres -h localhost -p 15432 -c "${CREATE_QUERY}"
|
||||
@@ -124,7 +124,7 @@ jobs:
|
||||
--locked
|
||||
- name: Create app user in Postgres
|
||||
run: |
|
||||
sudo apt-get update && sudo apt-get install postgresql-client
|
||||
sudo apt-get update && sudo apt-get install postgresql-client -y
|
||||
|
||||
CREATE_QUERY="CREATE USER ${APP_USER} WITH PASSWORD '${APP_USER_PWD}';"
|
||||
PGPASSWORD="password" psql -U postgres -h localhost -p 15432 -c "${CREATE_QUERY}"
|
||||
|
||||
@@ -48,7 +48,9 @@ async fn subscriber_can_unsubscribe(connection_pool: PgPool) {
|
||||
}
|
||||
|
||||
#[sqlx::test]
|
||||
async fn a_valid_unsubscribe_link_is_present_in_new_post_email_notifications(connection_pool: PgPool) {
|
||||
async fn a_valid_unsubscribe_link_is_present_in_new_post_email_notifications(
|
||||
connection_pool: PgPool,
|
||||
) {
|
||||
let app = TestApp::spawn(connection_pool).await;
|
||||
app.create_confirmed_subscriber().await;
|
||||
app.admin_login().await;
|
||||
|
||||
Reference in New Issue
Block a user