Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Tests/AppTests/QueryPerformanceTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class QueryPerformanceTests: XCTestCase {

func test_01_Search_packageMatchQuery() async throws {
let query = Search.packageMatchQueryBuilder(on: app.db, terms: ["a"], filters: [])
try await assertQueryPerformance(query, expectedCost: 1500, variation: 150)
try await assertQueryPerformance(query, expectedCost: 1650, variation: 150)
}

func test_02_Search_keywordMatchQuery() async throws {
Expand Down
4 changes: 2 additions & 2 deletions mon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:

grafana:
# https://github.com/grafana/grafana/releases
image: grafana/grafana:11.1.4
image: grafana/grafana:11.1.5
environment:
GF_SECURITY_ADMIN_PASSWORD: ${GF_SECURITY_ADMIN_PASSWORD}
GF_USERS_ALLOW_SIGN_UP: 'false'
Expand Down Expand Up @@ -71,7 +71,7 @@ services:

prometheus:
# https://github.com/prometheus/prometheus/releases
image: prom/prometheus:v2.54.0
image: prom/prometheus:v2.54.1
volumes:
- prometheus_data:/prometheus
command: --config.file=/prometheus.yml --storage.tsdb.retention.time=30d
Expand Down
22 changes: 18 additions & 4 deletions restfiles/doc-test.restfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ requests:
url: ${base_url}/CoreOffice/XMLCoder/documentation
validation:
status: .regex((2|3)\d\d)
# Build failure due to what looks like misconfiguration:
# error: target 'Snapshotting' is not a Swift source module
# /EmergeTools/SnapshotPreviews-iOS/documentation:
# url: ${base_url}/EmergeTools/SnapshotPreviews-iOS/documentation
# validation:
# status: .regex((2|3)\d\d)
/FabrizioBrancati/Queuer/documentation:
url: ${base_url}/FabrizioBrancati/Queuer/documentation
validation:
Expand Down Expand Up @@ -102,6 +108,10 @@ requests:
url: ${base_url}/RevenueCat/purchases-ios/documentation
validation:
status: .regex((2|3)\d\d)
/SwiftGraphs/Grape/documentation:
url: ${base_url}/SwiftGraphs/Grape/documentation
validation:
status: .regex((2|3)\d\d)
/SwiftyLab/MetaCodable/documentation:
url: ${base_url}/SwiftyLab/MetaCodable/documentation
validation:
Expand Down Expand Up @@ -373,10 +383,6 @@ requests:
url: ${base_url}/krzyzanowskim/CryptoSwift/documentation
validation:
status: .regex((2|3)\d\d)
/SwiftGraphs/Grape/documentation:
url: ${base_url}/SwiftGraphs/Grape/documentation
validation:
status: .regex((2|3)\d\d)
/liuliu/dflat/documentation:
url: ${base_url}/liuliu/dflat/documentation
validation:
Expand Down Expand Up @@ -433,6 +439,10 @@ requests:
url: ${base_url}/ordo-one/package-benchmark/documentation
validation:
status: .regex((2|3)\d\d)
/orlandos-nl/Citadel/documentation:
url: ${base_url}/orlandos-nl/Citadel/documentation
validation:
status: .regex((2|3)\d\d)
/orlandos-nl/MongoKitten/documentation:
url: ${base_url}/orlandos-nl/MongoKitten/documentation
validation:
Expand Down Expand Up @@ -626,6 +636,10 @@ requests:
url: ${base_url}/vapor-community/PassKit/documentation
validation:
status: .regex((2|3)\d\d)
/vapor-community/Zip/documentation:
url: ${base_url}/vapor-community/Zip/documentation
validation:
status: .regex((2|3)\d\d)
/vtourraine/AcknowList/documentation:
url: ${base_url}/vtourraine/AcknowList/documentation
validation:
Expand Down
Loading