Skip to content

Commit

Permalink
Updated test and codecov workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
rmj3197 committed Mar 11, 2024
1 parent 3785e2b commit b957f3e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ jobs:
run: poetry install --with tests
- name: Run tests and collect coverage
run: poetry run pytest --cov-report=xml --cov .
- name: list all files
run: |
cd tests
ls
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_uniformity_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_uniformity_no_rndm_state_dataframe(self):
self.assertIsInstance(uniformity_test.v_statistic_h0_, np.bool_)

def test_uniformity_rndm_state_dataframe_dim1(self):
x_sp = pd.DataFrame(sample_hypersphere(npoints=100, ndim=3))
x_sp = pd.DataFrame(sample_hypersphere(npoints=100, ndim=1))
uniformity_test = PoissonKernelTest(
rho=0.8, random_state=42, num_iter=10, n_jobs=4
).test(x_sp)
Expand Down

0 comments on commit b957f3e

Please sign in to comment.