oknozor / musicbrainz_rs

A wrapper around the musicbrainz API
MIT License
38 stars 18 forks source link

Use stub tests for API calls #71

Open rfilmyer opened 2 years ago

rfilmyer commented 2 years ago

cargo test takes a significant amount of time to run, most of which is spent making about 150 calls to the MusicBrainz API. We could probably replace the actual API calls with JSON for cargo test, and save the actual API querying for cargo test --all

oknozor commented 2 years ago

This would be nice indeed