Skip to content

Commit

Permalink
to delte
Browse files Browse the repository at this point in the history
  • Loading branch information
Rezney committed Jun 16, 2021
1 parent 0c98098 commit 9a03b3c
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 6 deletions.
16 changes: 16 additions & 0 deletions conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,24 @@ def pytest_collectstart(collector):
not in str(collector.fspath)
):
actor = None
print()
print()
print()
#print('COLECTOR', collector.session.leapp_repository.actors)
print()
print()
for a in collector.session.leapp_repository.actors:
print('A', a)
print('BASEDIR', current_repo_basedir)
print('Afull', a.full_path)
print('Acollector', collector.fspath.dirpath().dirname)
if a.full_path == collector.fspath.dirpath().dirname:
print()
print()
print('HIT')
print()
print()
print()
actor = a
break

Expand Down
5 changes: 0 additions & 5 deletions repos/common/topics/systeminfo.py

This file was deleted.

2 changes: 1 addition & 1 deletion repos/system_upgrade/common/.leapp/info
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"repos": ["efcf9016-f2d1-4609-9329-a298e6587b3c"], "messages": {}, "name": "common", "id": "644900a5-c347-43a3-bfab-f448f46d9647"}
{"name": "common", "id": "644900a5-c347-43a3-bfab-f448f46d9647"}
6 changes: 6 additions & 0 deletions utils/actor_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@

BASE_REPO = 'repos'
repos = find_and_scan_repositories(BASE_REPO, include_locals=True)
print()
print()
print()
print()
print(repos)
print()
repos.load()
if len(sys.argv) > 1:
actor = repos.lookup_actor(sys.argv[1])
Expand Down

0 comments on commit 9a03b3c

Please sign in to comment.