-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #183 from umesh-timalsina/175-core-equality-checks
Rework equality checks and representation of core types
- Loading branch information
Showing
30 changed files
with
477 additions
and
357 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,35 @@ | ||
trigger: | ||
- 175-core-equality-checks | ||
pr: | ||
- master | ||
|
||
jobs: | ||
- job: TestsForTopology | ||
pool: | ||
vmImage: 'ubuntu-latest' | ||
steps: | ||
- bash: echo "##vso[task.prependpath]$CONDA/bin" | ||
displayName: Add conta to path | ||
|
||
- bash: | | ||
conda config --set always_yes yes --set changeps1 no | ||
conda config --add channels omnia | ||
conda config --add channels janschulz | ||
conda config --add channels conda-forge | ||
conda config --add channels mosdef | ||
displayName: Add relavent channels | ||
- bash: | | ||
conda create -n test-environment | ||
source activate test-environment | ||
conda install --yes --file requirements.txt | ||
conda install pytest | ||
pip install -e . | ||
displayName: Install requirements, Install branch | ||
- bash: | | ||
source activate test-environment | ||
python -m pytest -v topology | ||
displayName: Run Tests | ||
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
Oops, something went wrong.