Skip to content

Commit

Permalink
deploy: 8acc74c
Browse files Browse the repository at this point in the history
  • Loading branch information
dabreegster committed Nov 27, 2023
1 parent 3f87245 commit 608fc2c
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 9 deletions.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/main-04967259.js → assets/main-c3ebdbba.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/nested-bbcfbb64.js → assets/nested-5844dc17.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified assets/osm2streets_js_bg.wasm
Binary file not shown.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>StreetExplorer</title>
<script type="module" crossorigin src="/osm2streets/assets/main-04967259.js"></script>
<link rel="modulepreload" crossorigin href="/osm2streets/assets/MainLayers-057e9a81.js">
<script type="module" crossorigin src="/osm2streets/assets/main-c3ebdbba.js"></script>
<link rel="modulepreload" crossorigin href="/osm2streets/assets/MainLayers-fe4bfc4b.js">
<link rel="stylesheet" href="/osm2streets/assets/MainLayers-82f6406d.css">
</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions lane_editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>osm2streets lane editor</title>
<script type="module" crossorigin src="/osm2streets/assets/nested-bbcfbb64.js"></script>
<link rel="modulepreload" crossorigin href="/osm2streets/assets/MainLayers-057e9a81.js">
<script type="module" crossorigin src="/osm2streets/assets/nested-5844dc17.js"></script>
<link rel="modulepreload" crossorigin href="/osm2streets/assets/MainLayers-fe4bfc4b.js">
<link rel="stylesheet" href="/osm2streets/assets/MainLayers-82f6406d.css">
</head>
<body>
Expand Down
11 changes: 9 additions & 2 deletions tests/lib.rs
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
#[cfg(test)]
mod tests {
use abstutil::Timer;
use std::sync::Once;

use anyhow::{bail, Result};
use env_logger::{Builder, Env};

use abstutil::Timer;
use experimental::RoadNetwork;
use geom::LonLat;
use osm2streets::{MapConfig, Transformation};

static SETUP_LOGGER: Once = Once::new();

include!(concat!(env!("OUT_DIR"), "/tests.rs"));

fn test(path: &str) -> Result<()> {
abstutil::logger::setup();
SETUP_LOGGER
.call_once(|| Builder::from_env(Env::default().default_filter_or("info")).init());

let mut timer = Timer::new("test osm2streets");

Expand Down

0 comments on commit 608fc2c

Please sign in to comment.