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

airbnb / superset / 7156
0%

Build:
DEFAULT BRANCH: master
Ran 16 May 2017 04:45AM UTC
Jobs 4
Files 40
Run time 4min
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

pending completion
7156

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

4248 of 6073 relevant lines covered (69.95%)

2.79 hits per line

Jobs
ID Job ID Ran Files Coverage
3 7156.3 (TOX_ENV=py34-postgres) 16 May 2017 04:48AM UTC 0
69.69
Travis Job 7156.3
4 7156.4 (TOX_ENV=py34-sqlite) 16 May 2017 04:45AM UTC 0
69.64
Travis Job 7156.4
5 7156.5 (TOX_ENV=py27-mysql) 16 May 2017 04:45AM UTC 0
69.69
Travis Job 7156.5
6 7156.6 (TOX_ENV=py27-sqlite) 16 May 2017 04:47AM UTC 0
69.62
Travis Job 7156.6
Source Files on build 7156
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #7156
  • e7946451 on github
  • Prev Build on master (#7155)
  • Next Build on master (#7160)
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