Skip to content
This repository has been archived by the owner on Jan 14, 2024. It is now read-only.

Commit

Permalink
#60: Migration from Travis CI to Github CI - try to correct tests on …
Browse files Browse the repository at this point in the history
…Github CI

```
No module named rkd
```
  • Loading branch information
blackandred committed Nov 25, 2020
1 parent bd8f444 commit 72c7bc0
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ def test_integration_is_output_properly_catch_by_sh(self):
"""

# build first
subprocess.check_call(['python3', '-m', 'rkd', '--silent', ':py:build'], env={'RKD_PATH': RKD_PATH})
env = dict(os.environ)
env['RKD_PATH'] = RKD_PATH

subprocess.check_call(['python3', '-m', 'rkd', '--silent', ':py:build'], env=env)

# try to publish
out = self._call_publish_via_shell('--username=wrong --password=wrong --test').decode('utf-8')
Expand Down

0 comments on commit 72c7bc0

Please sign in to comment.