Skip to content

Commit

Permalink
Merge pull request #924 from ebwinters/master
Browse files Browse the repository at this point in the history
Remove germany gov scraper
  • Loading branch information
ebwinters committed Oct 22, 2020
2 parents 5c15d97 + 9460236 commit 7cf8187
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 0 additions & 2 deletions scrapers/covid-19/govScrapers/getGovData.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
const canadaData = require('./getCanada');
const italyData = require('./getItaly');
const germanyData = require('./getGermany');
const austriaData = require('./getAustria');
const switzerlandData = require('./getSwitzerland');
const nigeriaData = require('./getNigeria');
Expand Down Expand Up @@ -38,7 +37,6 @@ const govData = async (keys, redis) => {
{ country: 'South Africa', fn: southAfricaData },
{ country: 'Canada', fn: canadaData },
{ country: 'Italy', fn: italyData },
{ country: 'Germany', fn: germanyData },
{ country: 'Austria', fn: austriaData },
{ country: 'Switzerland', fn: switzerlandData },
{ country: 'Nigeria', fn: nigeriaData },
Expand Down
3 changes: 1 addition & 2 deletions tests/v2/api_gov.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ const countries = [
'Austria',
'Canada',
'Italy',
'Germany',
'Switzerland',
'Nigeria',
'India',
Expand Down Expand Up @@ -114,7 +113,7 @@ describe('TESTING /v2/gov/italy', () => {
});
});

describe('TESTING /v2/gov/germany', () => {
describe.skip('TESTING /v2/gov/germany', () => {
it('/v2/gov/germany correct amount of provinces', (done) => {
chai.request(app)
.get('/v2/gov/germany')
Expand Down
3 changes: 1 addition & 2 deletions tests/v3/covid-19/api_gov.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const countries = [
'Austria',
'Canada',
'Italy',
'Germany',
'Switzerland',
'Nigeria',
'India',
Expand Down Expand Up @@ -114,7 +113,7 @@ describe('TESTING /v3/covid-19/gov/italy', () => {
});
});

describe('TESTING /v3/covid-19/gov/germany', () => {
describe.skip('TESTING /v3/covid-19/gov/germany', () => {
it('/v3/covid-19/gov/germany correct amount of provinces', (done) => {
chai.request(app)
.get('/v3/covid-19/gov/germany')
Expand Down

0 comments on commit 7cf8187

Please sign in to comment.