Skip to content

Commit 81cc2f8

Browse files
authored
Merge pull request #122 from cvvergara/travistest
Travistest
2 parents 613a5af + 95db3e6 commit 81cc2f8

19 files changed

+91
-295
lines changed

.travis.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# ------------------------------------------------------------------------------
2+
# Travis CI scripts
3+
# Copyright(c) pgRouting Contributors
4+
#
5+
# Main configuration
6+
# ------------------------------------------------------------------------------
7+
8+
dist: xenial
9+
10+
language: python
11+
python:
12+
- "3.5"
13+
14+
addons:
15+
apt:
16+
packages:
17+
- pyqt5-dev-tools
18+
19+
cache:
20+
directories:
21+
- $HOME/.cache/pip
22+
23+
before_cache:
24+
- rm -f $HOME/.cache/pip/log/debug.log
25+
26+
install:
27+
- pip install -r requirements.txt
28+
29+
before_script:
30+
- mkdir build
31+
32+
script:
33+
- pb_tool deploy -y -p build
34+
- mkdocs build
35+

connectors/__init__.py

Whitespace-only changes.

docs/functions/pgr_KSP.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
|![Heap paths](../img/fields/arguments/KSP_heapPaths.png)| Tick.. ![Heap paths](../img/fields/arguments/KSP_heapPathsON.png)
4343
|![Directed](../img/fields/arguments/directedOFF.png)| Tick if the graph is directed ![Directed](../img/fields/arguments/directedON.png)|
4444

45-
## Execute tab
45+
## Execute tab
4646
![Execute tab](../img/tabs/execute/execute.png)
4747

4848
|Button|Action|
@@ -52,8 +52,8 @@
5252
|![Export](../img/buttons/execute/export.png)| Creates a one row per edge line geometry layer|
5353
|![Export Merged](../img/buttons/execute/exportmergedON.png)| Creates a one row per path multiline geometry layer. As many rows as needed|
5454

55-
Depending on the pressed button the layer name will be
55+
Depending on the pressed button the layer name will be
5656
```
5757
(<U|D>) pgr_KSP: <source_id> to <target_id> BBOX(<bbox>)
5858
(M <U|D>) pgr_KSP: <source_id> to <target_id> BBOX(<bbox>)
59-
```
59+
```

docs/functions/pgr_aStar.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
|![Epsilon](../img/fields/arguments/astar_epsilon.png)| For less restricted results. `epsilon >= 1`. Default ``1``.|
4646
|![Directed](../img/fields/arguments/directedOFF.png)| Tick if the graph is directed ![Directed](../img/fields/arguments/directedON.png)|
4747

48-
## Execute tab
48+
## Execute tab
4949
![Execute tab](../img/tabs/execute/execute.png)
5050

5151
|Button|Action|
@@ -56,8 +56,8 @@
5656
|![Export Merged](../img/buttons/execute/exportmergedON.png)| Creates a one row per path multiline geometry layer. As many rows as needed|
5757

5858

59-
Depending on the pressed button the layer name will be
59+
Depending on the pressed button the layer name will be
6060
```
6161
(<U|D>) pgr_astar: <source_id> to <target_id> BBOX(<bbox>)
6262
(M <U|D>) pgr_astar: <source_id> to <target_id> BBOX(<bbox>)
63-
```
63+
```

docs/functions/pgr_astarCost.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
|![Epsilon](../img/fields/arguments/astar_epsilon.png)| For less restricted results. `epsilon >= 1`. Default ``1``.|
4444
|![Directed](../img/fields/arguments/directedOFF.png)| Tick if the graph is directed ![Directed](../img/fields/arguments/directedON.png)|
4545

46-
## Execute tab
46+
## Execute tab
4747
![Execute tab](../img/tabs/execute/execute.png)
4848

4949
|Button|Action|
@@ -53,7 +53,7 @@
5353
|![Export](../img/buttons/execute/export.png)| Creates a one row per edge line geometry layer|
5454
|![Export Merged](../img/buttons/execute/exportmergedOFF.png)| Disabled|
5555

56-
Depending on the pressed button the layer name will be
56+
Depending on the pressed button the layer name will be
5757
```
5858
(<U|D>) pgr_astarCost: <source_id> to <target_id> BBOX(<bbox>)
59-
```
59+
```

docs/functions/pgr_bdAstar.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,19 @@
4545
|![Epsilon](../img/fields/arguments/astar_epsilon.png)| For less restricted results. `epsilon >= 1`. Default ``1``.|
4646
|![Directed](../img/fields/arguments/directedOFF.png)| Tick if the graph is directed ![Directed](../img/fields/arguments/directedON.png)|
4747

48-
## Execute tab
48+
## Execute tab
4949
![Execute tab](../img/tabs/execute/execute.png)
5050

5151
|Button|Action|
5252
| ----------- | --------- |
5353
|![Preview](../img/buttons/execute/preview.png)| Draws in the canvas the resulting path |
5454
|![Clear Preview](../img/buttons/execute/clearpreview.png)| Removes from the canvas objects generated with Preview|
5555
|![Export](../img/buttons/execute/export.png)| Creates a one row per edge line geometry layer|
56-
|![Export Merged](../img/buttons/execute/exportmergedON.png)| Creates a one row per path multiline geometry layer. As many rows as needed|
56+
|![Export Merged](../img/buttons/execute/exportmergedON.png)| Creates a one row per path multi line geometry layer. As many rows as needed|
5757

5858

59-
Depending on the pressed button the layer name will be
59+
Depending on the pressed button the layer name will be
6060
```
6161
(<U|D>) pgr_bdAstar: <source_id> to <target_id> BBOX(<bbox>)
6262
(M <U|D>) pgr_bdAstar: <source_id> to <target_id> BBOX(<bbox>)
63-
```
63+
```

docs/functions/pgr_bdAstarCost.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
|![toVids](../img/fields/arguments/astar-dijkstra_toVids.png)|Choose with ![plus](../img/tabs/arguments/plus_button.png) or write the comma separated identifiers of the destination vertices|
4141
|![Directed](../img/fields/arguments/directedOFF.png)| Tick if the graph is directed ![Directed](../img/fields/arguments/directedON.png)|
4242

43-
## Execute tab
43+
## Execute tab
4444
![Execute tab](../img/tabs/execute/ExecuteCost.png)
4545

4646
|Button|Action|
@@ -50,7 +50,7 @@
5050
|![Export](../img/buttons/execute/export.png)| Creates a one row per edge line geometry layer|
5151
|![Export Merged](../img/buttons/execute/exportmergedOFF.png)| Disabled|
5252

53-
Depending on the pressed button the layer name will be
53+
Depending on the pressed button the layer name will be
5454
```
5555
(<U|D>) pgr_bdAstarCost: <source_id> to <target_id> BBOX(<bbox>)
56-
```
56+
```

docs/functions/pgr_bdDijkstra.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
|![toVids](../img/fields/arguments/astar-dijkstra_toVids.png)|Choose with ![plus](../img/tabs/arguments/plus_button.png) or write the comma separated identifiers of the destination vertices|
4141
|![Directed](../img/fields/arguments/directedOFF.png)| Tick if the graph is directed ![Directed](../img/fields/arguments/directedON.png)|
4242

43-
## Execute tab
43+
## Execute tab
4444
![Execute tab](../img/tabs/execute/execute.png)
4545

4646
|Button|Action|
@@ -50,8 +50,8 @@
5050
|![Export](../img/buttons/execute/export.png)| Creates a one row per edge line geometry layer|
5151
|![Export Merged](../img/buttons/execute/exportmergedON.png)| Creates a one row per path multiline geometry layer. As many rows as needed|
5252

53-
Depending on the pressed button the layer name will be
53+
Depending on the pressed button the layer name will be
5454
```
5555
(<U|D>) pgr_bdDijkstra: <source_id> to <target_id> BBOX(<bbox>)
5656
(M <U|D>) pgr_bdDijkstra: <source_id> to <target_id> BBOX(<bbox>)
57-
```
57+
```

docs/functions/pgr_bdDijkstraCost.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
|![toVids](../img/fields/arguments/astar-dijkstra_toVids.png)|Choose with ![plus](../img/tabs/arguments/plus_button.png) or write the comma separated identifiers of the destination vertices|
4141
|![Directed](../img/fields/arguments/directedOFF.png)| Tick if the graph is directed ![Directed](../img/fields/arguments/directedON.png)|
4242

43-
## Execute tab
43+
## Execute tab
4444
![Execute tab](../img/tabs/execute/ExecuteCost.png)
4545

4646
|Button|Action|
@@ -50,7 +50,7 @@
5050
|![Export](../img/buttons/execute/export.png)| Creates a one row per edge line geometry layer|
5151
|![Export Merged](../img/buttons/execute/exportmergedOFF.png)| Disabled|
5252

53-
Depending on the pressed button the layer name will be
53+
Depending on the pressed button the layer name will be
5454
```
5555
(<U|D>) pgr_bdDijkstraCost: <source_id> to <target_id> BBOX(<bbox>)
56-
```
56+
```

docs/functions/pgr_dijkstra.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
|![toVids](../img/fields/arguments/astar-dijkstra_toVids.png)|Choose with ![plus](../img/tabs/arguments/plus_button.png) or write the comma separated identifiers of the destination vertices|
4141
|![Directed](../img/fields/arguments/directedOFF.png)| Tick if the graph is directed ![Directed](../img/fields/arguments/directedON.png)|
4242

43-
## Execute tab
43+
## Execute tab
4444
![Execute tab](../img/tabs/execute/execute.png)
4545

4646
|Button|Action|
@@ -50,8 +50,8 @@
5050
|![Export](../img/buttons/execute/export.png)| Creates a one row per edge line geometry layer|
5151
|![Export Merged](../img/buttons/execute/exportmergedON.png)| Creates a one row per path multiline geometry layer. As many rows as needed|
5252

53-
Depending on the pressed button the layer name will be
53+
Depending on the pressed button the layer name will be
5454
```
5555
(<U|D>) pgr_dijkstra: <source_id> to <target_id> BBOX(<bbox>)
5656
(M <U|D>) pgr_dijkstra: <source_id> to <target_id> BBOX(<bbox>)
57-
```
57+
```

0 commit comments

Comments
 (0)