• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

airbnb / superset / 7156 / 4
0%
master: 0%

Build:
DEFAULT BRANCH: master
Ran 16 May 2017 04:45AM UTC
Files 40
Run time 2s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

16 May 2017 04:33AM UTC coverage: 69.636% (-0.02%) from 69.659%
TOX_ENV=py34-sqlite

push

travis-ci

mistercrunch
fixed 500 error when export dashboard (#2760)

https://github.com/airbnb/superset/blob/master/superset/views/core.py#L474

http://flask-appbuilder.readthedocs.io/en/latest/actions.html?highlight=action

```
@action("mulexport", __("Export"), __("Export dashboards?"), "fa-database")
    def mulexport(self, items):
        ids = ''.join('&id={}'.format(d.id) for d in items)
```
change to 
```
@action("mulexport", __("Export"), __("Export dashboards?"), "fa-database")
    def mulexport(self, items):
        if not isinstance(items, list):
            items = [items]
        ids = ''.join('&id={}'.format(d.id) for d in items)
```

fixed:
#2184
#2667

4229 of 6073 relevant lines covered (69.64%)

0.7 hits per line

Source Files on job 7156.4 (TOX_ENV=py34-sqlite)
  • Tree
  • List 0
  • Changed 1
  • Source Changed 1
  • Coverage Changed 1
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Build 7156
  • Travis Job 7156.4
  • e7946451 on github
  • Prev Job for TOX_ENV=py34-sqlite on master (#7155.4)
  • Next Job for TOX_ENV=py34-sqlite on master (#7160.4)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc