-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Code Issues to Get Unit Tests Running (#121)
* First pass. * Action on push * Install deps. * ubuntu 20? * Ok, just mac * Try commenting out the partially implemented models? * Let failing tests fail * Tests failing now only for `sample_description_from_xarray` and code-issues * Fix location and design matrices * Remove method init_par from Estimator * Remove rcond because dask doesn't support? * check chunk type for dask * Fix tf + dask compat issue. * Remove TF1 and TF2 Tests * Downgrade `sparse` * Make sure arrays are not immutable * Remove TF mentions * Remove TF2 * Remove TF from requirements.txt * Undo erroneous deletion of dep * Remove constants. * Remove constants. * Fix small tensorflow merges issues. Co-authored-by: David S. Fischer <[email protected]>
- Loading branch information
1 parent
4697bbe
commit b5c5f49
Showing
9 changed files
with
82 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
on: push | ||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
python-version: [ '3.6' ] | ||
name: Python ${{ matrix.python-version }} Tests | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
architecture: x64 | ||
- name: Install Dependencies | ||
run: pip install -r requirements.txt | ||
- name: Run Tests | ||
run: python -m unittest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
anndata==0.7.8 | ||
dask==2021.3.0 | ||
numpy>=1.16.4 | ||
pandas==1.1.5 | ||
patsy==0.5.2 | ||
pytest==6.2.5 | ||
scipy>=1.2.1 | ||
sparse==0.9.1 | ||
toolz==0.11.2 |