Skip to content

Commit

Permalink
feat: adds Dataset, patches error in pytest for upload
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Feb 22, 2023
1 parent 0f38fbc commit 1e37c88
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/test_pymsx.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Test package level functionality.
"""
import pytest
import os

email = "help@mosaics.ai"
password = "$mosaics123"
Expand Down Expand Up @@ -89,9 +90,7 @@ def test_upload():
"""Test multipart upload"""
from pymsx.client import MsxClient

csv_file = (
"/Users/munnyserver/kairosos/mosaics.ai/pymsx/tests/fixtures/nlp_train.csv"
)
csv_file = os.path.join(os.path.dirname(__file__), "fixtures", "nlp_train.csv")

print("File path: ", csv_file)

Expand Down

0 comments on commit 1e37c88

Please sign in to comment.