Skip to content

Commit

Permalink
Add beautifulsoup4 to requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
spodgorny9 committed May 13, 2024
1 parent 6c7400f commit 1b11e8a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/web/test_rhub.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
"""Test research hub html response"""
import os
from elm import TEST_DATA_DIR
from elm.web.rhub import ResearchOutputs
import elm.web.rhub


fp = '../data/rhub_html.txt'
FP_TXT = os.path.join(TEST_DATA_DIR, 'rhub_html.txt')

with open(fp, 'r', encoding='utf8') as f:
with open(FP_TXT, 'r', encoding='utf8') as f:
TEXT = f.read()


Expand Down

0 comments on commit 1b11e8a

Please sign in to comment.