Skip to content

Commit 3196b60

Browse files
committed
move data files to new test data location
1 parent 60ade0e commit 3196b60

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/iotools/test_psm4.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44

55
from pvlib.iotools import psm4
66
from ..conftest import (
7-
DATA_DIR, RERUNS, RERUNS_DELAY, assert_index_equal, nrel_api_key
7+
TESTS_DATA_DIR, RERUNS, RERUNS_DELAY, assert_index_equal, nrel_api_key
88
)
99
import numpy as np
1010
import pandas as pd
1111
import pytest
1212
from requests import HTTPError
1313
from io import StringIO
1414

15-
TMY_TEST_DATA = DATA_DIR / 'test_psm4_tmy-2023.csv'
16-
YEAR_TEST_DATA = DATA_DIR / 'test_psm4_2023.csv'
17-
YEAR_TEST_DATA_5MIN = DATA_DIR / 'test_psm4_2023_5min.csv'
18-
MANUAL_TEST_DATA = DATA_DIR / 'test_read_psm4.csv'
15+
TMY_TEST_DATA = TESTS_DATA_DIR / 'test_psm4_tmy-2023.csv'
16+
YEAR_TEST_DATA = TESTS_DATA_DIR / 'test_psm4_2023.csv'
17+
YEAR_TEST_DATA_5MIN = TESTS_DATA_DIR / 'test_psm4_2023_5min.csv'
18+
MANUAL_TEST_DATA = TESTS_DATA_DIR / 'test_read_psm4.csv'
1919
LATITUDE, LONGITUDE = 40.5137, -108.5449
2020
METADATA_FIELDS = [
2121
'Source', 'Location ID', 'City', 'State', 'Country', 'Latitude',

0 commit comments

Comments
 (0)