forked from reframe-hpc/reframe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vasileios Karakasis
committed
May 29, 2022
1 parent
c979008
commit e1226b6
Showing
12 changed files
with
17 additions
and
20 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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Contributing to ReFrame | ||
|
||
We are glad to accept contributions to this project from interested parties. | ||
We are glad to accept contributions to this project from interested parties. | ||
You can contribute with new ReFrame tests, new features or bug fixes. | ||
Before submitting your contribution, please have a look into our [coding style guide](https://github.com/eth-cscs/reframe/wiki/Coding-Style-Guide) and our [contribution guidelines](https://github.com/eth-cscs/reframe/wiki/Contributing-to-ReFrame). | ||
Before submitting your contribution, please have a look into our [coding style guide](https://github.com/reframe-hpc/reframe/wiki/Coding-Style-Guide) and our [contribution guidelines](https://github.com/reframe-hpc/reframe/wiki/Contributing-to-ReFrame). |
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
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 |
---|---|---|
|
@@ -238,8 +238,8 @@ def test_is_interactive(monkeypatch): | |
|
||
|
||
def test_is_url(): | ||
repo_https = 'https://github.com/eth-cscs/reframe.git' | ||
repo_ssh = '[email protected]:eth-cscs/reframe.git' | ||
repo_https = 'https://github.com/reframe-hpc/reframe.git' | ||
repo_ssh = '[email protected]:reframe-hpc/reframe.git' | ||
assert osext.is_url(repo_https) | ||
assert not osext.is_url(repo_ssh) | ||
|
||
|
@@ -278,10 +278,10 @@ def test_git_repo_hash_no_git_repo(git_only, monkeypatch, tmp_path): | |
|
||
|
||
def test_git_repo_exists(git_only): | ||
assert osext.git_repo_exists('https://github.com/eth-cscs/reframe.git', | ||
assert osext.git_repo_exists('https://github.com/reframe-hpc/reframe.git', | ||
timeout=10) | ||
assert not osext.git_repo_exists('reframe.git', timeout=10) | ||
assert not osext.git_repo_exists('https://github.com/eth-cscs/xxx', | ||
assert not osext.git_repo_exists('https://github.com/reframe-hpc/xxx', | ||
timeout=10) | ||
|
||
|
||
|