Fedora Easy Karma - Request for testing

2020-03-26 Thread Frantisek Zatloukal
Hi,

I've released updated fedora-easy-karma version yesterday with fixes for
Bodhi >= 4 and some cleaning up of the code (dropped python2, old bodhi and
yum support). Bodhi 5.2 fixed the issue server side (thanks!).

You don't need to open updates page and give karma manually through bodhi
webui, *giving karma from the CLI works again*.

The new version is currently in updates-testing:

F30: https://bodhi.fedoraproject.org/updates/FEDORA-2020-a298299fd5
F31: https://bodhi.fedoraproject.org/updates/FEDORA-2020-cf10f95a87
F32: https://bodhi.fedoraproject.org/updates/FEDORA-2020-05f8e750df

I'd appreciate some testing if everything works as it should. Feel free to
report issues either in this thread, on bodhi updates page or in
fedora-easy-karma-repo ( https://pagure.io/fedora-easy-karma ).

Thanks and happy "karming"!
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/test@lists.fedoraproject.org


Re: fedora-easy-karma alternative: fedora-update-feedback

2020-01-20 Thread Fabio Valentini
On Mon, Jan 20, 2020 at 4:33 PM Alessio  wrote:
>
> On Mon, 2020-01-20 at 15:59 +0100, Fabio Valentini wrote:
> > - download and extract tarball of the latest fedora-update-feedback
> > release (or use git master, at your peril)
> > - "dnf install cargo" (for the rust compiler and build system)

(snip)

> And also "dnf install openssl-devel", right?

Correct, thanks for checking it out. I've added this dependency and
some more instructions to the git repository's README file.
It's now also possible to install it directly from crates.io (without
downloading sources from GitHub) by just running "cargo install
fedora-update-feedback".

Fabio

> Ciao,
> A.
> ___
> test mailing list -- test@lists.fedoraproject.org
> To unsubscribe send an email to test-le...@lists.fedoraproject.org
> Fedora Code of Conduct: 
> https://docs.fedoraproject.org/en-US/project/code-of-conduct/
> List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
> List Archives: 
> https://lists.fedoraproject.org/archives/list/test@lists.fedoraproject.org
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/test@lists.fedoraproject.org


Re: fedora-easy-karma alternative: fedora-update-feedback

2020-01-20 Thread Alessio
On Mon, 2020-01-20 at 15:59 +0100, Fabio Valentini wrote:
> - download and extract tarball of the latest fedora-update-feedback
> release (or use git master, at your peril)
> - "dnf install cargo" (for the rust compiler and build system)

And also "dnf install openssl-devel", right?

Ciao,
A.
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/test@lists.fedoraproject.org


Re: fedora-easy-karma alternative: fedora-update-feedback

2020-01-20 Thread Fabio Valentini
On Mon, Jan 20, 2020, 15:42 Adam Williamson 
wrote:

> Hey folks!
>
> Just wanted to point up a neat project Fabio Valentini has been working
> on. It's called fedora-update-feedback:
>
> https://github.com/ironthree/fedora-update-feedback
>
> it's an alternative to fedora-easy-karma, written in Rust. He says it
> should be pretty much working at this point, and he'd be happy to get
> bug reports or RFEs for it, if anyone wants to give it a spin. It is
> not packaged for Fedora yet, but if you're comfortable building from
> the git repository, feel free to try it out! I believe you would need
> to build fedora-rs and bodhi-rs (in that order) first before it will
> build and work:
>
> https://github.com/ironthree/fedora-rs
> https://github.com/ironthree/bodhi-rs


Thanks for the shout-out!

I'll add more user-friendly installation instructions to the GitHub readme
until it's available as a fedora package.

But basically, it boils down to:

- download and extract tarball of the latest fedora-update-feedback release
(or use git master, at your peril)
- "dnf install cargo" (for the rust compiler and build system)
- "cargo install --path ." (fetches dependencies and builds the binary)
- copy built binary into $PATH
- create config file in ~/.config/fedora.toml with:

```
[FAS]
username = "USERNAME"
```

I'm looking into creating RPM packages for this, and also publish it to
crates.io.

As Adam said, feel free to open RFE and bug tickets in the GitHub project.
For example, it would be pretty easy to improve the UI and format of
printed messages, but I'm crap with that kind of stuff :)

Fabio



> --
> Adam Williamson
> Fedora QA Community Monkey
> IRC: adamw | Twitter: AdamW_Fedora | identi.ca: adamwfedora
> http://www.happyassassin.net
>
>
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/test@lists.fedoraproject.org


fedora-easy-karma alternative: fedora-update-feedback

2020-01-20 Thread Adam Williamson
Hey folks!

Just wanted to point up a neat project Fabio Valentini has been working
on. It's called fedora-update-feedback:

https://github.com/ironthree/fedora-update-feedback

it's an alternative to fedora-easy-karma, written in Rust. He says it
should be pretty much working at this point, and he'd be happy to get
bug reports or RFEs for it, if anyone wants to give it a spin. It is
not packaged for Fedora yet, but if you're comfortable building from
the git repository, feel free to try it out! I believe you would need
to build fedora-rs and bodhi-rs (in that order) first before it will
build and work:

https://github.com/ironthree/fedora-rs
https://github.com/ironthree/bodhi-rs
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | identi.ca: adamwfedora
http://www.happyassassin.net
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/test@lists.fedoraproject.org


Re: fedora-easy-karma "fixed"

2019-07-04 Thread Michel Alexandre Salim

On 7/4/19 12:00 AM, Kamil Paral wrote:> Hello,
>
> anyone using fedora-easy-karma to submit feedback to proposed Bodhi
> updates might be interested to know that we've fixed some issues that
> appeared recently after Bodhi updated to version 4. F-e-k no longer
> crashes and can list all your karma-able updates.
This is great news, thanks! I manage a fleet of Fedora client machines 
at work, and want to start enrolling volunteers to start testing updates 
-- having this tool working again would really help.


Cheers,

--
Michel Alexandre Salim
profile: https://keybase.io/michel_slm
GPG key: 96A7 A6ED FB4D 2113 4056 3257 CAF9 AD10 ACB1 BEF2
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/test@lists.fedoraproject.org


fedora-easy-karma "fixed"

2019-07-04 Thread Kamil Paral
Hello,

anyone using fedora-easy-karma to submit feedback to proposed Bodhi updates
might be interested to know that we've fixed some issues that appeared
recently after Bodhi updated to version 4. F-e-k no longer crashes and can
list all your karma-able updates. However, due to a bodhi bug [1] it can't
submit karma on its own, so for each such update you'll be asked to open
the URL manually in a web browser and provide the feedback there. That
might be inconvenient for some, but at least you can still use f-e-k to
figure out *which* updates you can provide feedback on. I hope the Bodhi
bug can be resolved quickly once Bodhi maintainers are back from vacation.
The "fixed" f-e-k is already available in stable updates for Fedora 30, and
it's in testing updates for Fedora 29 [2] (more karma is welcome).

Cheers,
Kamil

[1] https://github.com/fedora-infra/bodhi/issues/3298
[2] https://bodhi.fedoraproject.org/updates/FEDORA-2019-793e240ce0
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/test@lists.fedoraproject.org


Re: Fedora-Easy-Karma Bodhi Errors

2017-10-23 Thread Kamil Paral
On Mon, Oct 23, 2017 at 12:00 AM, Ankur Sinha 
wrote:

> On Thu, 2017-10-19 at 20:24 +0200, Till Maas wrote:
> > Unfortunately, yes, it needs to be changed in the script at the
> > moment.
> > I am currently considering options to fix this so the next update
> > will
> > not require this manual change anymore.
>
> Ah, that's great! Thanks, Till.
>
> I'll keep an eye out so I can test out the new stuff whenever you
> announce it :)
>

A fix is already in Bodhi:
https://bodhi.fedoraproject.org/updates/?packages=fedora-easy-karma
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


Re: Fedora-Easy-Karma Bodhi Errors

2017-10-22 Thread Ankur Sinha
On Thu, 2017-10-19 at 20:24 +0200, Till Maas wrote:
> Unfortunately, yes, it needs to be changed in the script at the
> moment.
> I am currently considering options to fix this so the next update
> will
> not require this manual change anymore.

Ah, that's great! Thanks, Till. 

I'll keep an eye out so I can test out the new stuff whenever you
announce it :)

-- 
Thanks,
Regards,
Ankur Sinha "FranciscoD"

https://fedoraproject.org/wiki/User:Ankursinha

signature.asc
Description: This is a digitally signed message part
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


Re: Fedora-Easy-Karma Bodhi Errors

2017-10-19 Thread Till Maas
On Thu, Oct 19, 2017 at 12:00:51PM +0100, Ankur Sinha wrote:
> On Fri, 2017-10-13 at 12:06 +0200, Till Maas wrote:

> > in case you encounter problems with messages containing " Max retries
> > exceeded with url:" it might help to reduce the number of updates f-
> > e-k
> > requests, for example to 100. For this you need to change
> > 
> > "limit": 1000
> > 
> > to
> > 
> > "limit": 100
> 
> Does this change have to be made in the script itself? Do you think we
> could make this a command line argument to the script that has a
> default value of 1000?

Unfortunately, yes, it needs to be changed in the script at the moment.
I am currently considering options to fix this so the next update will
not require this manual change anymore.

Kind regards
Till


signature.asc
Description: PGP signature
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


Re: Fedora-Easy-Karma Bodhi Errors

2017-10-19 Thread Ankur Sinha
On Fri, 2017-10-13 at 12:06 +0200, Till Maas wrote:
> Hi,

Hi Till,

> 
> in case you encounter problems with messages containing " Max retries
> exceeded with url:" it might help to reduce the number of updates f-
> e-k
> requests, for example to 100. For this you need to change
> 
> "limit": 1000
> 
> to
> 
> "limit": 100

Does this change have to be made in the script itself? Do you think we
could make this a command line argument to the script that has a
default value of 1000?

-- 
Thanks,
Regards,
Ankur Sinha "FranciscoD"

https://fedoraproject.org/wiki/User:Ankursinha

signature.asc
Description: This is a digitally signed message part
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


Fedora-Easy-Karma Bodhi Errors

2017-10-13 Thread Till Maas
Hi,

in case you encounter problems with messages containing " Max retries
exceeded with url:" it might help to reduce the number of updates f-e-k
requests, for example to 100. For this you need to change

"limit": 1000

to

"limit": 100

Kind Regards
Till
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


Re: PSA: Fedora Easy Karma - remove ~/.fedora/openidbaseclient-sessions.cache when getting "You must provide a captcha_key" error

2017-05-04 Thread Ed Greshko
On 05/04/17 18:13, Sérgio Basto wrote:
> what does mean PSA ?

Public Service Announcement

-- 
I'm jet lagged. That's my excuse and I'm sticking to it.
P
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


Re: PSA: Fedora Easy Karma - remove ~/.fedora/openidbaseclient-sessions.cache when getting "You must provide a captcha_key" error

2017-05-04 Thread Sérgio Basto
Hi, 

what does mean PSA ? 

On Thu, 2017-05-04 at 08:42 +0200, Till Maas wrote:
> Hi,
> 
> if fedora-easy-karma fails with an error message saying "You must
> provide a captcha_key" it should help to remove the file
> 
> ~/.fedora/openidbaseclient-sessions.cache
> 
> This will also log you out from other Fedora Web apps that you
> access with command-line tools, I suppose. The bug report is here:
> https://bugzilla.redhat.com/show_bug.cgi?id=1445703
> 
> Kind regards
> Till
> ___
> test mailing list -- test@lists.fedoraproject.org
> To unsubscribe send an email to test-le...@lists.fedoraproject.org
-- 
Sérgio M. B.
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


PSA: Fedora Easy Karma - remove ~/.fedora/openidbaseclient-sessions.cache when getting "You must provide a captcha_key" error

2017-05-03 Thread Till Maas
Hi,

if fedora-easy-karma fails with an error message saying "You must
provide a captcha_key" it should help to remove the file

~/.fedora/openidbaseclient-sessions.cache

This will also log you out from other Fedora Web apps that you
access with command-line tools, I suppose. The bug report is here:
https://bugzilla.redhat.com/show_bug.cgi?id=1445703

Kind regards
Till
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


Re: Fedora Easy Karma

2017-01-19 Thread Adam Williamson
On Thu, 2017-01-19 at 22:30 -0500, Jonathan Calloway wrote:
> Adam,
> 
> You know what. . . I figured out what the problem was.  I ws using my
> email address instead of my FAS username.  I should have read the
> output a little closer. . . . self.login(self.username,
> self.password. . . . . that should have been a clue!

Ah, great! Glad you got it figured out :)
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | identi.ca: adamwfedora
http://www.happyassassin.net
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


Re: Fedora Easy Karma

2017-01-19 Thread Jonathan Calloway
Adam,

You know what. . . I figured out what the problem was.  I ws using my email 
address instead of my FAS username.  I should have read the output a little 
closer. . . . self.login(self.username, self.password. . . . . that should have 
been a clue!

Jonathan




> On Jan 19, 2017, at 9:49 PM, Adam Williamson  
> wrote:
> 
> On Thu, 2017-01-19 at 19:50 -0500, Jonathan Calloway wrote:
>> This example is from Fedora 25.  I was trying to mark an update to 
>> Geary as failed, as the database is not pre-loading emails older than 2 
>> months:
> 
> Hum, that looks like it's failing to authenticate properly, I think. It
> may be that something's changed in the authentication path and easy-
> karma can no longer auth properly.
> 
> I can try and take a look into this in a bit, or there are other folks
> reading who could also do so, I'm sure.
> -- 
> Adam Williamson
> Fedora QA Community Monkey
> IRC: adamw | Twitter: AdamW_Fedora | XMPP: adamw AT happyassassin . net
> http://www.happyassassin.net
> ___
> test mailing list -- test@lists.fedoraproject.org
> To unsubscribe send an email to test-le...@lists.fedoraproject.org
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


Re: Fedora Easy Karma

2017-01-19 Thread Adam Williamson
On Thu, 2017-01-19 at 19:50 -0500, Jonathan Calloway wrote:
> This example is from Fedora 25.  I was trying to mark an update to 
> Geary as failed, as the database is not pre-loading emails older than 2 
> months:

Hum, that looks like it's failing to authenticate properly, I think. It
may be that something's changed in the authentication path and easy-
karma can no longer auth properly.

I can try and take a look into this in a bit, or there are other folks
reading who could also do so, I'm sure.
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | XMPP: adamw AT happyassassin . net
http://www.happyassassin.net
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


Re: Fedora Easy Karma

2017-01-19 Thread Jonathan Calloway
This example is from Fedora 25.  I was trying to "Pass" an update to 
Network Manager:


Traceback (most recent call last):
  File "/bin/fedora-easy-karma", line 831, in 
fek = FedoraEasyKarma()
  File "/bin/fedora-easy-karma", line 690, in __init__
    karma)
  File "/bin/fedora-easy-karma", line 815, in send_comment
res = bc.comment(update["title"], comment, karma=karma)
  File "/usr/lib/python2.7/site-packages/fedora/client/bodhi.py", line 
82, in wrapper

result = method(*args, **kwargs)
  File "/usr/lib/python2.7/site-packages/fedora/client/bodhi.py", line 
270, in comment

'csrf_token': self.csrf()})
  File "/usr/lib/python2.7/site-packages/fedora/client/bodhi.py", line 
82, in wrapper

result = method(*args, **kwargs)
  File "/usr/lib/python2.7/site-packages/fedora/client/bodhi.py", line 
315, in csrf

self.login(self.username, self.password)
  File 
"/usr/lib/python2.7/site-packages/fedora/client/openidbaseclient.py", 
line 289, in login

openid_insecure=self.openid_insecure)
  File 
"/usr/lib/python2.7/site-packages/fedora/client/openidproxyclient.py", 
line 141, in openid_login

data=output['response'])
  File "/usr/lib/python2.7/site-packages/requests/sessions.py", line 
518, in post

return self.request('POST', url, data=data, json=json, **kwargs)
  File "/usr/lib/python2.7/site-packages/requests/sessions.py", line 
475, in request

resp = self.send(prep, **send_kwargs)
  File "/usr/lib/python2.7/site-packages/requests/sessions.py", line 
585, in send

r = adapter.send(request, **kwargs)
  File "/usr/lib/python2.7/site-packages/requests/adapters.py", line 
462, in send

raise RetryError(e, request=request)
requests.exceptions.RetryError: 
HTTPSConnectionPool(host='bodhi.fedoraproject.org', port=443): Max 
retries exceeded with url: 
/dologin.html?janrain_nonce=2017-01-20T00%3A32%3A57ZAcrbg7 (Caused by 
ResponseError('too many 500 error responses',))



Thanks!

Jonathan Calloway


On 01/19/2017 06:09 PM, Adam Williamson wrote:

On Thu, 2017-01-19 at 18:06 -0500, Jonathan Calloway wrote:

Thanks.  Can I send my output in this thread so you can look at it?

Oh! Yes, sure, please do. Sorry, I completely missed the thing about
'strange Python errors'. I haven't had time to run easy-karma in a
while...

___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


Re: Fedora Easy Karma

2017-01-19 Thread Jonathan Calloway
This example is from Fedora 25.  I was trying to mark an update to 
Geary as failed, as the database is not pre-loading emails older than 2 
months:


Traceback (most recent call last):
 File "/bin/fedora-easy-karma", line 831, in 
   fek = FedoraEasyKarma()
 File "/bin/fedora-easy-karma", line 690, in __init__
   karma)
 File "/bin/fedora-easy-karma", line 815, in send_comment
   res = bc.comment(update["title"], comment, karma=karma)
 File "/usr/lib/python2.7/site-packages/fedora/client/bodhi.py", line 
82, in wrapper

   result = method(*args, **kwargs)
 File "/usr/lib/python2.7/site-packages/fedora/client/bodhi.py", line 
270, in comment

   'csrf_token': self.csrf()})
 File "/usr/lib/python2.7/site-packages/fedora/client/bodhi.py", line 
82, in wrapper

   result = method(*args, **kwargs)
 File "/usr/lib/python2.7/site-packages/fedora/client/bodhi.py", line 
315, in csrf

   self.login(self.username, self.password)
 File 
"/usr/lib/python2.7/site-packages/fedora/client/openidbaseclient.py", 
line 289, in login

   openid_insecure=self.openid_insecure)
 File 
"/usr/lib/python2.7/site-packages/fedora/client/openidproxyclient.py", 
line 141, in openid_login

   data=output['response'])
 File "/usr/lib/python2.7/site-packages/requests/sessions.py", line 
518, in post

   return self.request('POST', url, data=data, json=json, **kwargs)
 File "/usr/lib/python2.7/site-packages/requests/sessions.py", line 
475, in request

   resp = self.send(prep, **send_kwargs)
 File "/usr/lib/python2.7/site-packages/requests/sessions.py", line 
585, in send

   r = adapter.send(request, **kwargs)
 File "/usr/lib/python2.7/site-packages/requests/adapters.py", line 
462, in send

   raise RetryError(e, request=request)
requests.exceptions.RetryError: 
HTTPSConnectionPool(host='bodhi.fedoraproject.org', port=443): Max 
retries exceeded with url: 
/dologin.html?janrain_nonce=2017-01-18T02%3A43%3A07ZcRMbTF (Caused by 
ResponseError('too many 500 error responses',))



I will send another example from F24 shortly.

Jonathan Calloway

On Thu, Jan 19, 2017 at 6:09 PM, Adam Williamson 
 wrote:

On Thu, 2017-01-19 at 18:06 -0500, Jonathan Calloway wrote:

 Thanks.  Can I send my output in this thread so you can look at it?


Oh! Yes, sure, please do. Sorry, I completely missed the thing about
'strange Python errors'. I haven't had time to run easy-karma in a
while...
--
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | XMPP: adamw AT happyassassin . 
net

http://www.happyassassin.net
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


Re: Fedora Easy Karma

2017-01-19 Thread Adam Williamson
On Thu, 2017-01-19 at 18:06 -0500, Jonathan Calloway wrote:
> Thanks.  Can I send my output in this thread so you can look at it?

Oh! Yes, sure, please do. Sorry, I completely missed the thing about
'strange Python errors'. I haven't had time to run easy-karma in a
while...
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | XMPP: adamw AT happyassassin . net
http://www.happyassassin.net
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


Re: Fedora Easy Karma

2017-01-19 Thread Jonathan Calloway
Thanks.  Can I send my output in this thread so you can look at it?

Thanks!

Jonathan 

> On Jan 19, 2017, at 5:54 PM, Adam Williamson  
> wrote:
> 
> On Thu, 2017-01-19 at 17:22 -0500, Jonathan Calloway wrote:
>> Hello!
>> 
>> Is anyone using Fedora Easy Karma?  I realize that Bhodi is the
>> preferred method of testing updates, but I really like the CLI
>> interface and the factt that it just ‘finds’ updates that have been
>> installed and presents them for testing. 
>> 
>> I have been wanting to start doing update testing again, and have an
>> F24 and an F25 VM devoted to this, but I keep getting strange Python
>> related errors on both. 
>> 
>> If I need to start using Bhodi I will, just wanted to ping the list
>> first!
> 
> Easy karma sends the feedback you enter to Bodhi, so you're really
> using both :) Many of us use easy-karma, it is absolutely an 'approved'
> way of doing update feedback, and much easier than the web interface
> for quickly providing feedback on multiple updates.
> 
> The only problem I have with it is we've never gotten around to
> updating it for Bodhi 2.x multiple feedback items, we really ought to
> do that...
> -- 
> Adam Williamson
> Fedora QA Community Monkey
> IRC: adamw | Twitter: AdamW_Fedora | XMPP: adamw AT happyassassin . net
> http://www.happyassassin.net <http://www.happyassassin.net/>
> ___
> test mailing list -- test@lists.fedoraproject.org 
> <mailto:test@lists.fedoraproject.org>
> To unsubscribe send an email to test-le...@lists.fedoraproject.org 
> <mailto:test-le...@lists.fedoraproject.org>
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


Re: Fedora Easy Karma

2017-01-19 Thread Adam Williamson
On Thu, 2017-01-19 at 17:22 -0500, Jonathan Calloway wrote:
> Hello!
> 
> Is anyone using Fedora Easy Karma?  I realize that Bhodi is the
> preferred method of testing updates, but I really like the CLI
> interface and the factt that it just ‘finds’ updates that have been
> installed and presents them for testing. 
> 
> I have been wanting to start doing update testing again, and have an
> F24 and an F25 VM devoted to this, but I keep getting strange Python
> related errors on both. 
> 
> If I need to start using Bhodi I will, just wanted to ping the list
> first!

Easy karma sends the feedback you enter to Bodhi, so you're really
using both :) Many of us use easy-karma, it is absolutely an 'approved'
way of doing update feedback, and much easier than the web interface
for quickly providing feedback on multiple updates.

The only problem I have with it is we've never gotten around to
updating it for Bodhi 2.x multiple feedback items, we really ought to
do that...
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | XMPP: adamw AT happyassassin . net
http://www.happyassassin.net
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


Fedora Easy Karma

2017-01-19 Thread Jonathan Calloway
Hello!

Is anyone using Fedora Easy Karma?  I realize that Bhodi is the preferred 
method of testing updates, but I really like the CLI interface and the factt 
that it just ‘finds’ updates that have been installed and presents them for 
testing. 

I have been wanting to start doing update testing again, and have an F24 and an 
F25 VM devoted to this, but I keep getting strange Python related errors on 
both. 

If I need to start using Bhodi I will, just wanted to ping the list first!

Thanks!

Jonathan Calloway
___
test mailing list -- test@lists.fedoraproject.org
To unsubscribe send an email to test-le...@lists.fedoraproject.org


Re: Fedora Easy Karma Recommendation

2014-01-07 Thread Till Maas
On Sun, Dec 08, 2013 at 06:04:56AM -0500, fla...@dailybrood.com wrote:
> For me, step 2 in Fedora Easy Karma instructions which reads "Run
> fedora-cert", wasn't immediately clear without further explanation
> or an example .i.e. fedora-cert --username=flashl.

here fedora-cert asks for a username, so it can just be run without any
parameters. However, feel free to improve the wiki page if you have any
idea.

> As an aside, this observation may be just be operator error, but,
> although FAS account already exist with credentials, fedora-cert
> rejected login credentials and wasn't happy until I used -n flag to
> recreate new certificate.

I cannot reproduce this either.

Regards
Till
-- 
test mailing list
test@lists.fedoraproject.org
To unsubscribe:
https://admin.fedoraproject.org/mailman/listinfo/test

Fedora Easy Karma Recommendation

2013-12-08 Thread flashl
For me, step 2 in Fedora Easy Karma instructions which reads "Run 
fedora-cert", wasn't immediately clear without further explanation or an 
example .i.e. fedora-cert --username=flashl.


As an aside, this observation may be just be operator error, but, 
although FAS account already exist with credentials, fedora-cert 
rejected login credentials and wasn't happy until I used -n flag to 
recreate new certificate.


Flashl
--
test mailing list
test@lists.fedoraproject.org
To unsubscribe:
https://admin.fedoraproject.org/mailman/listinfo/test

Re: fedora-easy-karma or bodhi issue

2011-05-27 Thread Luke Macken
Excerpts from Brian Pepple's message of Sun May 01 16:58:47 -0400 2011:
> On Sun, May 1, 2011 at 2:48 PM, Athmane Madjoudj  wrote:
> > Today I was not able to use fedora-easy-karma, I get the following errors:
> 
> 
> 
> > Anyone else is seeing this ?
> 
> Yeah, I ran across the same thing. Haven't had a chance to look at
> what was causing it.

This issue should be resolved. Please let me know if you hit this
problem again in the future.

luke
-- 
test mailing list
test@lists.fedoraproject.org
To unsubscribe: 
https://admin.fedoraproject.org/mailman/listinfo/test


Re: Skipping updates with fedora-easy-karma

2011-05-10 Thread Adam Williamson
On Tue, 2011-05-10 at 01:02 -0600, Tim Flink wrote:
> As I'm going through updates-testing, I'm noticing a decent number of
> comments with 0 karma and content similar to "not tested" or "I don't
> have this". I'm guessing a bit here, but I assume that is due to using
> fedora-easy-karma.
> 
> You can skip an update in f-e-k by just hitting enter; you don't have to
> use -1/0/1. Please don't enter comments with 0 karma and comments of the
> form "didn't test this".
> 
> If you already knew this, ignore me :) I just figured this was the
> easiest explanation for the sudden increase in 0 karma comments.

Thanks for the reminder, Tim. Proven testers, this is in the proven
tester instructions:

https://fedoraproject.org/wiki/Proven_tester#Unfamiliar_packages

which you swore you'd read carefully, remember ;)
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Fedora Talk: adamwill AT fedoraproject DOT org
http://www.happyassassin.net

-- 
test mailing list
test@lists.fedoraproject.org
To unsubscribe: 
https://admin.fedoraproject.org/mailman/listinfo/test


Skipping updates with fedora-easy-karma

2011-05-10 Thread Tim Flink
As I'm going through updates-testing, I'm noticing a decent number of
comments with 0 karma and content similar to "not tested" or "I don't
have this". I'm guessing a bit here, but I assume that is due to using
fedora-easy-karma.

You can skip an update in f-e-k by just hitting enter; you don't have to
use -1/0/1. Please don't enter comments with 0 karma and comments of the
form "didn't test this".

If you already knew this, ignore me :) I just figured this was the
easiest explanation for the sudden increase in 0 karma comments.

Tim



signature.asc
Description: OpenPGP digital signature
-- 
test mailing list
test@lists.fedoraproject.org
To unsubscribe: 
https://admin.fedoraproject.org/mailman/listinfo/test

Re: fedora-easy-karma or bodhi issue

2011-05-01 Thread Brian Pepple
On Sun, May 1, 2011 at 2:48 PM, Athmane Madjoudj  wrote:
> Today I was not able to use fedora-easy-karma, I get the following errors:



> Anyone else is seeing this ?

Yeah, I ran across the same thing. Haven't had a chance to look at
what was causing it.

Later,
/B
--
Brian Pepple 

https://fedoraproject.org/wiki/User:Bpepple
gpg --keyserver pgp.mit.edu --recv-keys 810CC15E
BD5E 6F9E 8688 E668 8F5B  CBDE 326A E936 810C C15E
-- 
test mailing list
test@lists.fedoraproject.org
To unsubscribe: 
https://admin.fedoraproject.org/mailman/listinfo/test

fedora-easy-karma or bodhi issue

2011-05-01 Thread Athmane Madjoudj
Hello all,

Today I was not able to use fedora-easy-karma, I get the following errors:

FAS Password for athmane:
Warning: Server error: 
ServerError(https://admin.fedoraproject.org/updates/comment, 500, 
Internal Server Error)
Warning: Server error: 
ServerError(https://admin.fedoraproject.org/updates/comment, 500, 
Internal Server Error)
Warning: Server error: 
ServerError(https://admin.fedoraproject.org/updates/comment, 500, 
Internal Server Error)
Warning: Comment not submitted: too many errors


Anyone else is seeing this ?

I've removed ~/.fedora but still the same issue

Note that I can use Bodhi web interface and the next outage is scheduled 
at: 2011-05-02 21:00 UTC


-- 
Athmane Madjoudj
RHCE
-- 
test mailing list
test@lists.fedoraproject.org
To unsubscribe: 
https://admin.fedoraproject.org/mailman/listinfo/test