We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ea1d9e9 + f3c99c4 commit d8072fcCopy full SHA for d8072fc
.github/workflows/ci.yml
@@ -88,7 +88,9 @@ jobs:
88
89
- name: Show gecko web driver log on failures
90
if: ${{ failure() }}
91
- run: cat geckodriver.log
+ run: |
92
+ [ -f geckodriver.log ] && cat geckodriver.log \
93
+ || echo "there is no gecko web driver log to show"
94
95
- name: Upload Coverage
96
if: ${{ success() }}
openwisp_controller/geo/tasks.py
@@ -0,0 +1,3 @@
1
+from .estimated_location.tasks import ( # noqa: F401 - support autodiscovering
2
+ manage_estimated_locations,
3
+)
0 commit comments